标签:format com 小数 网址 整数 关键字 python 网站 name
1 按顺序输出 2 print(‘{}and{}‘.format(‘hello‘,25)) #先输出hello后输出25 3 不按顺序输出 4 print(‘{1}and{0}‘.format(‘hello‘,25)) #先输出25后输出hello 5 按照键值对输出 6 print(‘网站是{name},网址是{url}‘.format(name=‘新闻网‘,url=‘www.news.com‘)) 7 输出浮点数 8 print(‘{:.2f}‘.format(3.1415926)) #输出小数点后两位 9 使用f关键字输出 10 print(f‘我今年{25}岁‘)
1 输出整数 2 print(‘我今年%d岁‘ %(25)) 3 print(‘我今年%5d岁‘ %(25)) #指定输出字符宽度为5个字符数 4 输出字符串 5 print(‘我叫%s‘ %(‘张三‘)) 6 输出浮点数 7 print(‘我的存款是%.2f‘ %(123.345)) #输出小数点后两位
标签:format com 小数 网址 整数 关键字 python 网站 name
原文地址:https://www.cnblogs.com/feng1014/p/12594087.html