python基礎學習(五)

10.列表app

# 列表  List  同時存放很  多數據
# 正數索引index 0        1         2
# 負數        -3       -2        -1
fruits1 = ["apple", "orange", "pear"]
# 列表支持  數字 字符串 布爾 類型 同時存在
fruits2 = ["apple", "orange", "pear", "100", True]

print(fruits1)
# 列表可經過索引來查找   pear
print(fruits1[2])
print(fruits1[-1])
print(fruits2)

# 切片  slice [開始:結束)
print(fruits2[1:4])  # ['orange', 'pear', '100']
# 替換列表裏的值
fruits1[0] = "grape"
print(fruits1)

run結果:ui

11.元組google

# 元組  tuple   一旦肯定元素不能被修改和刪除
com = ("google", "microsoft", "alibaba", "tencent")
print(com[0])

run結果:spa

相關文章
相關標籤/搜索