假设我有一个我想要放在字符串中的数字。
x = 0.13
如何格式化我的字符串以便不显示前导零?
print('This is my formatted number: {formating}'.format(x))
>> This is my formatted number: .13
答案 0 :(得分:3)
您可以使用strip
方法:
x = 0.13
res = str(x).strip('0')
print('This is my formatted number: {}'.format(res))