1.最大区别还是在字符串yinyong
>>>str='abcde' >>>print str[0:3] abc
注意是不包括第4个字符(码标3)的!
- 格式化输出不定长度格式
>>>x=5; y=0.34 >>>print 'hello%*.1f' % (x,y) hello 0.3
1.最大区别还是在字符串yinyong
>>>str='abcde' >>>print str[0:3] abc
注意是不包括第4个字符(码标3)的!
>>>x=5; y=0.34 >>>print 'hello%*.1f' % (x,y) hello 0.3