摘要:
1),在Python中,采用的格式化方式和C语言是一致的,用%实现,看下例: 这里保存为了1,shuchu.py 文件 print('%2d-%02d' % (3, 1)) print('%.2f' % 3.1415926) 运行结果: 2), 方法二: format() 练习: 小明的成绩从去年的 阅读全文
摘要:
>>> n = 123 >>> f = 456.789 >>> s1 = 'hello ,world' >>> s2 = 'hello, \'adam\'' >>> s3 = r'hello, "bart"' >>> s4 = r'''hello, lisa!''' >>> print(n,f,s1 阅读全文