例如:
lista=[1,2," a "," add"]
Print(lista[:])#包括“開始”和“結束”。
Print(lista[1:])#不包括“第壹個”
Print(lista[:-1])#不包括“tail”
Print(lista[1:3])#不包括“頭”和“尾”。