摘要: 1、list和tuple 切片:a=range(100)a[0:]= 1--99a[1:10]=1--9a[1:50:2]=1,3,5.。。。a[-1:]=99a[-100:]=0--99a[-100:-50:2]=0,2,4,6......字符串切片操作也是一样的def firstCharUppe... 阅读全文
posted @ 2015-01-20 16:57 robotor 阅读(464) 评论(0) 推荐(0) 编辑