一开始没讲过4:50:5,各位是怎么想出来的
L = range(1, 101)
print L[0:10]
print L[2::3]
print L[4:50:5]
他在讲这个小节时没提到过了L[ a: b:c: ] 这三个位置是 开始,终止位置,间隔位置,各位大佬是怎么做出来这个答案的
L = range(1, 101)
print L[0:10]
print L[2::3]
print L[4:50:5]
他在讲这个小节时没提到过了L[ a: b:c: ] 这三个位置是 开始,终止位置,间隔位置,各位大佬是怎么做出来这个答案的
2019-07-21
举报