6斤四两利用python代码怎么表示”””
w=100#运行结果必须是一斤4两 一字不差#6+斤+4+两
```python x = input() y = int(x) print(y/16, "斤", y%16, "两")
```