Python切片(入门7)

转载请标明出处:

http://www.cnblogs.com/why168888/p/6407977.html

本文出自:【Edwin博客园】

Python切片

1. 对list进行切片

L = range(1, 101)
print L[:10]
print L[2::3]
print L[4:50:5]

2. 倒序切片

L = range(1, 101)
print L[-10:]
print L[-46::5]

3. 对字符串切片

def firstCharUpper(s):
return s[0].upper() + s[1:]
print firstCharUpper('hello')
print firstCharUpper('sunday')
print firstCharUpper('september')
上一篇:流畅的Python——切片


下一篇:关于javascript里面仿python切片操作数组的使用方法