Python之字符串

1.字符串的定義方式 代碼: # 字符串的定義 a = 'hello' # \表示轉義 b = 'what\'s up' # 也可以直接使用雙引號 c = "what's up" print(a) print(b) print(c) 運行結果: 2.字符串的6大特性 索引 切片 重複 連接 成員操作符 for循環遍歷(迭代) (1).索引 代碼: s = 'hello' # 元素的下
相關文章
相關標籤/搜索