所以,我有1包的學生,一個班的學生,我有一個main.py那個包之外,我試圖創建學生例如創建另一個類的Python對象
class Student:
Id=""
def __init__(self, Id):
self.Id = Id
獨立的對象文件main.py:
def main():
print("is workign")
temp = Student("50") ## I want to create the object of class Student and send an attribute
if __name__ == '__main__':
main()
任何幫助將不勝感激。
我希望你的縮進實際上並沒有那麼糟糕。 – bozdoz
你需要在你的main.py中導入這個學生 – lucemia