Call a function from another file?

前端 未结 17 2395
梦谈多话
梦谈多话 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 09:07

    Functions from .py file (can (of course) be in different directory) can be simply imported by writing directories first and then the file name without .py extension:

    from directory_name.file_name import function_name
    

    And later be used: function_name()

提交回复
热议问题