用python编写一个能实现单位英寸与公制单位厘米的程序
时间: 2024-05-11 14:15:27 浏览: 70
python 英制单位英寸和公制单位厘米互换 示例
可以的,下面是Python代码:
```
def inch_to_cm(length):
return length * 2.54
def cm_to_inch(length):
return length / 2.54
print("1. 英寸转厘米")
print("2. 厘米转英寸")
choice = int(input("请选择(1/2): "))
if choice == 1:
length = float(input("请输入长度(英寸): "))
print("{:.2f} 英寸 = {:.2f} 厘米".format(length, inch_to_cm(length)))
elif choice == 2:
length = float(input("请输入长度(厘米): "))
print("{:.2f} 厘米 = {:.2f} 英寸".format(length, cm_to_inch(length)))
else:
print("选择无效")
```
如果您输入了一个长度,程序将会把这个长度转换成相应的单位。如果您选择了1,程序将会把英寸转换成厘米;如果您选择了2,程序将会把厘米转换成英寸。
阅读全文