Importing a function from a class in another file?

后端 未结 6 648
北恋
北恋 2020-12-05 03:55

I\'m writing a Python program for fun but got stuck trying to import a function from a class in another file. Here is my code:

#jurassic park mainframe

from         


        
6条回答
  •  庸人自扰
    2020-12-05 04:32

    from FOLDER_NAME import FILENAME
    from FILENAME import CLASS_NAME FUNCTION_NAME
    

    FILENAME is w/o the suffix

提交回复
热议问题