def main():
userInput()
calculate()
def userInput():
print("Please put in the weight of your package:")
a= input()
weight= float(a)
def calculate():
if weight <= 2:
print('Your rate is $1.10')
elif weight > 2 or weight <= 6:
print('Your rate is $2.20')
elif weight > 6 or weight <= 10:
print('Your rate is $3.70')
else:
print('Your rate is $3.80')
main()
所以基本上我想知道如何在“计算”模块中使用“用户输入”模块中的数据。我知道我有一个争论,但是(这一直让我发疯)对于我的生活,我无法找出正确的方法来做到这一点。我理解参数的概念,但我无法在我的代码中实现它。谢谢。