摘要: format输出 1 按顺序输出 2 print('{}and{}'.format('hello',25)) #先输出hello后输出25 3 不按顺序输出 4 print('{1}and{0}'.format('hello',25)) #先输出25后输出hello 5 按照键值对输出 6 prin 阅读全文
posted @ 2020-04-07 19:01 岐岐卡卡西 阅读(370) 评论(0) 推荐(0)