#可以直接在類別class外面設定參數 class stu: def __init__(self,n1=''): pass a1 = stu() a1.school = '首府大學' print(a1.school)