Call a function from another file?

前端 未结 17 2601
梦谈多话
梦谈多话 2020-11-22 08:06

Set_up: I have a .py file for each function I need to use in a program.

In this program, I need to call the function from the external files.

I\'ve tried:

17条回答
  •  耶瑟儿~
    2020-11-22 08:49

    You should have the file at the same location as that of the Python files you are trying to import. Also 'from file import function' is enough.

提交回复
热议问题