LZN's Blog CodePlayer

python实际使用中需要注意的问题

2016-11-02
LZN

1.最大区别还是在字符串yinyong

>>>str='abcde'
>>>print str[0:3]
abc

注意是不包括第4个字符(码标3)的!

  1. 格式化输出不定长度格式
>>>x=5; y=0.34
>>>print 'hello%*.1f' % (x,y)
hello  0.3

 


下一篇 CMAQ output files

Comments

Content