shoppinglist = ['','banana
','cat
','dog
','duck']
#indexing and 'subscription operation'
print('
the first item is
',shoppinglist[0])
print('
the second item is
',shoppinglist[1])
print('
the third item is
',shoppinglist[2])
print('
item -1 is
',shoppinglist[-1])
print('
item -2 is
',shoppinglist[-2])
#slicing on a list
print('
form the 1 to 3 is
',shoppinglist[1:3])
print('
from the 2 to 4 is
',shoppinglist[2:4])
print('
form the 1 to -1 is
',shoppinglist[2:-3])
print('
from the start to end is
',shoppinglist[:])
#slicing on a string
name='
keritafranklin
'print('
from the 1 to 3 is
',name[1:3])
print('
from the 2 to 4 is
',name[2:4])
print('
from the 1 to -1 is
',name[1:-1])
print('
from the start to end is
',name[:])
#序列的特性:
#1、索引操作符
#2、切片操作符
#-1指的是最後乙個、-2指的是倒數第二個。以此類推
#如果在某個區間沒有元素,則返回
#如果用這樣引用[:],則表示輸出所有元素
#切片時從第乙個序列開始,到第二個序列前截止
2015/4/21
python基礎資料結構 序列
python基礎資料結構 序列 在python中,常見的基本序列有列表 元組 字串。以下依次對這三種常見的序列進行方法概述,本文章注重知識圖譜,具體的使用方法詢問 度娘 棧 先進後出 lifo 假設有乙個空列表,命名為 p p for i in range 1 10 p 為 1,2,3,4,5,6,...
Python之資料結構 序列
一 序列 1 列表 元組和字串都是序列 二 序列的兩個特點 索引操作符和切片操作符 1 索引操作符 從序列中抓取乙個特定專案 下標操作 使用索引獲取序列中的單個專案 eg shoplist 0 序列的第乙個專案 shoplist 1 序列的最後乙個專案 2 切片操作符 獲取序列的乙個切片,即一部分序...
python資料結構 切片,序列函式
利用python進行資料分析 chapter3 用切邊可以選取大多數序列型別的一部分,切片的基本形式是在方括號中使用start stop in 73 seq 7,2,3,7,5,6,0,1 in 74 seq 1 5 out 74 2,3,7,5 切片也可以被序列賦值 in 75 seq 3 4 6...