#python str.format 方法被用于字符串的格式化输出。
摘要:#python str.format 方法被用于字符串的格式化输出。 #''.format() print('{0}+{1}={2}'.format(1,2,3)) #1+2=3 可见字符串中大括号内的数字分别对应着format的几个参数。 print('{}+{}={}'.format(1,2,3)) #1+2=3 如果省略数字,可以得到同样的输出结果。但是替换顺序默认按照[0],[1],[2...
阅读全文
posted @ 2018-04-14 23:14