标签: python-3.x
我想导入与代码位于同一目录中的.py文件,但它似乎不起作用:
directory |-- bot.py |-- commands.py
commands.py:
def init_commands(message): print(message)
bot.py:
import commands commands.init_commands('test')