1.4.2 字串常見的操作
1.4.3 字典的建立及索引
1.4.4 字典的常用操作
刪除1.4.5 字典推導式 _batch
# 單引號
string =
'my name'
# 雙引號
string =
"my name"
# 三引號,可以跨行
string =
'''my
name'''
結果
my name
my name
myname
注意
1"任何在這雙引號之間的文字」
2"單引號其實和雙引號完全一樣」
3'''三個引號被用於長段文字或說明,只要引號不結束,你就可以任意換行'''
4字串屬不可變資料型別
關於注釋的快捷鍵
注釋前
string =
'my name'
print
(string)
string =
"my name"
print
(string)
string =
'''my
name'''
print
(string)
注釋後(選中**,按住ctrl+?)
#string =
'my name'
# print
(string)
# string =
"my name"
# print
(string)
# string =
'''my
# #
# name'''
# print
(string)
合併:'char1'
+'char2'
+'char3'
重複:'word'*3
轉換:int
(string)
切片與索引:
str[0]
//取字串中第乙個元素
str[-4
]//取字串中倒數第4個元素
str[1:
4]//取字串中第2個元素到第5個元素(不含)
str[3:
]//取字串中第4個元素及其後邊的元素
str[:3
]//取字串中第乙個元素直到第4個元素(不含)
string =
'my name'
res = string*
2print
(res)
res = string+
' is ***'
print
(res)
res = string.
split
(sep=
',')
print
(res)
print(1
,string)
res = string.
lower()
# string[0]
='y' # 非法操作,字串屬於不可變的資料型別
print
(res)
結果
my namemy name
my name is ***
['my name'
]1 my name
my name
nasdaq_code =
//nasdaq_code =
1、鍵-值成對出現;
2、鍵不能重複;
3、鍵不可更改,值可修改;
4、鍵來索引值。
dic =
結果,捨棄後邊那個
dic1 =
print
(dic1)
結果,錯誤
traceback (most recent call last):
file "c:/users/18763/pycharmprojects/untitled1/1-2-2.py", line 73, in dic1 =
typeerror: unhashable type: 'list'
res = dic[
'h'] # 字典中的元素無先後順序,通過鍵來訪問值
結果
0.5
dic[
'hw']=
'hello world' # 新增鍵值對
結果
dic.
update
() # 新增鍵值對
print
(dic)
結果
del dic[
'h']
print
(dic)
結果
//before:
////after:
a =
//a =
print
(a)
結果
python學習 14 字串
2 查詢和替換 7個方法 3 大小寫轉換 5個方法 4 文字對齊 3個方法 5 去除空白字元 3 6 拆分和連線 5 字串的切片 可以使用索引獲取乙個字串中指定位置的字元,索引計數從0開始 也可以使用for迴圈遍歷字串中每乙個字元 大多數程式語言都是用 來定義字串 string hello pyth...
5 4字串操作 more
string f,result f i love you 8.5 year result f.substring 5 system.out.print result e you 8.5 year result f.substring 5,9 system.out.print result e yos...
三 字串操作
windows核心編碼字符集採用unicode字符集,字串處理使用unicode string,是乙個結構體,定義如下 typedef struct unicode string unicode string length 字串長度,maximumlength 字串緩衝區長度,buffer 字串緩衝...