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()
ни один из них не может найти модуль volume.py и импортировать его