我正在尝试将模块导入到我的main.py python文件中,这两个文件都在同一目录中

时间:2018-10-24 20:39:55

标签: python function import module call

def volumeofcube():
    a = int(input('Enter the length of the side:'))
    volume = a**3
    #Rounded to one decimal place
    volume = str(round(volume, 1))
    #The volume is added to its corresponding list
    volumeofcubelist.append(volume)
    print('The volume of the cube with the side', a,'is', volume)
    return volume

这是一个功能,我想导入到另一个文件(main.py)中以使其工作:

elif shape == 'cube':
    volumeofcube()

但是,当我尝试导入时:

import volumes
or
from volumes import volumeofcube()

没有一个能够找到volumes.py模块并将其导入

1 个答案:

答案 0 :(得分:1)

如果您要导入为

import volumes

volumeofcube方法的调用应为

volumes.volumeofcube()

如果您尝试导入为

from volumes import volumeofcube()

您需要取消括号,正确的语法是:

from volumes import volumeofcube