python print format
生活随笔
收集整理的這篇文章主要介紹了
python print format
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
挺有用
//test.py
1 print '%.*f' %(1, 13.987)
2 print '%.*f' %(2, 13.987)
3 print 'p=%8d' %(123)
4 print 'p=%-8d' %(123)
5 print '%+d' %(1)
6 print '% d' %2
7 print '%#o' %(17)
8 print '%#x' %(17)
9 print '%#X' %(29)
10 print '%02d' %(3)
11 print '% 02d' %(3)
12 print '%%%d' %(4)
13 d = {1:2, 2:3}
14 print d
15 print '%r' %(d)
16 print '%6.3f' %(12.14)
//result
# python test.py
14.0
13.99
p= 123
p=123
+1
2
021
0x11
0X1D
03
3
%4
{1: 2, 2: 3}
{1: 2, 2: 3}
12.140
轉(zhuǎn)載于:https://www.cnblogs.com/woodzcl/p/7778549.html
總結(jié)
以上是生活随笔為你收集整理的python print format的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: WEB网站测试思路
- 下一篇: 实验一 软件工程准备