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模块并将其导入
答案 0 :(得分:1)
如果您要导入为
import volumes
对volumeofcube
方法的调用应为
volumes.volumeofcube()
如果您尝试导入为
from volumes import volumeofcube()
您需要取消括号,正确的语法是:
from volumes import volumeofcube