我需要创建一个名为poundstometry的python函数,它将以磅为单位的权重转换为千克和克。
例如,正确答案是2公斤200克,而不是打印出2.2公斤
为了帮助您的工作,以下转换保持:
1磅=2.2公斤1公斤=1000克
您的程序应该提示用户输入磅数,并以千克和克为单位输出结果。def poundsToMetricFunction(kilograms, grams):
pounds = float(input("enter the amount of pounds: ")
kilograms = pounds * 2.2
grams = kilograms * 1000
print('The amount of pounds you entered is ', pounds,
' This is ', kilograms, ' kilograms ', 'and', grams,
'grams' )
我知道这是不正确的,但我试图找出我做错了什么,我的意思是我知道这可能都错了,但我是新来的,我想我只是需要一些反馈,我可以添加什么,或者如果我有正确的信息,我用什么格式来正确的语法。