python英尺厘米换算
时间: 2023-12-19 15:32:29 浏览: 134
厘米换算英尺英寸 python 代码
以下是Python英尺厘米换算的例子:
1. 厘米转换为英尺和英寸
```python
cm = int(input())
foot = cm/100.0 / 0.3048
inch = (cm/100.0 / 0.3048 - int(foot)) * 12
print(f"{int(foot)} {int(inch)}")
```
阅读全文
厘米换算英尺英寸 python 代码