笔记 # 第一段代码 lst=[11,22,33,44] print(lst[3]) # 第二段代码 lst=[] #lst=append('A','B','C') lst.append('A') lst.append('B') lst.append('C') print(lst)