s1 = 'hello'
s2 = 'world'
s3 = "i love you "
# 通過索引獲取字串中某個字元
print(s1[4])
# [:]擷取字串
print(s1[0:5])
# 字串拼接
print(s3 + s2)
# 重複輸出字串
print(s3*2)
# 判斷某個字串是否存在於目標字串中
print("h" in s1) # 返回結果是 bool 型別:false
print("h" in s1) # ...true
# 列表
list1 = ["hello","老王","i love you","python"]
print("list1[1]:",list1[1])
# 修改元素的值
list1[1] = "hello"
print(list1)
# 新增元素
print(list1)
# 刪除元素
del list1[1]
print(list1)
# 獲取列表長度
l = len(list1)
print(l) # 4
# 遍歷列表
for x in list1:
print(x,end=" ")
# 查詢
print("小明" in list1)
# 列表的擷取 和 拼接
print(list1[1])
print(list1[0:3])
print(list1[1]+"你好")
# 建立二維列表:3col,4row
list2d = [[0 for col in range(3)] for row in range(4)]
print(list2d)
print(list2d)
字串和列表的操作類似,增刪改查
上面**執行結果如下:
操作非常之多,這些是最基本的幾種,後續補充
待續。。。。。。
Python學習系列(三) 字串
乙個月沒有更新部落格了,最近工作上有點小忙,實在是沒有堅持住,丟久又有感覺寫的必要了,可見本人的堅持精神不佳,本系列沒有任何目的,純屬業餘學習,或者說是一時興趣所致。通過本文,能夠學習字串的基本操作,日積月累,多多練習,學到了,會用了才是王道。一 基本概念 1,關於轉義問題 1 方式 s hello...
Python學習筆記(三) 字串
字串索引 python字串索引從0開始,負索引從 1開始。0表示第乙個字元,1表示最後乙個字元。字元都有對應的編碼,可以使用ord a 函式檢視。熟悉unicode和ascii編碼。幾種常見的字元 反斜槓 單引號 雙引號 換行符 n 回車 r 和水平製表符 t 標準字串函式,在 中顯示 常用標準字串...
三 字串 一
三 字串 1。直接量三種寫法 1 單引號,不會替換變數,且只支援 兩個轉譯字元 2 雙引號,會進行變數替換,雙引號能支援除了 以外的所有轉譯符 3 heredoc,比如 string end of string haha hehe hoho.hehe end of string 其中end of s...