a = ['Call','me','Ishmael','.']print(a[1])#索引是从0开始的print(text4[173]);#找到索引处的元素print(text4.index('awaken'));#找到元素第一次出现的索引print(text5[16715:16735])#获取链表中任意片段中的元素sent = ['word1','word2','word3','word4','word5','word6','word7','word8','word9','word10'];print(sent[5:8])#sent[m:n] m:n-1 m represents indexprint(