1.字串
獲取字串的字元,例如:
test = 'abcd
'a= test[0] #
通過索引,下標,獲取字串中的某乙個字元
(a)b = test[0:1] #
通過下標的 範圍獲取字串中的一些字元 #0 <= ** <1
(b)c =len(test) #
獲取字串中有多少字元組成(不是下標)
print(c)
運算結果:
aa4process finished with exit code 0
2.list列表 用[ ]表示的 ,例如:a = [love,friend,home,"你好"]
test = [123,'adss']
print(type(test),test)
運算結果:
'list'> [123, '
adss']
process finished with exit code 0
3.利用迴圈獲取字串中的每個字元
第一種:
test = '你好\t謝謝
'count =0
while count a=test[count]
(a) count += 1
運算結果:
你好 謝謝
process finished with exit code 0
第二種:
for 變數名 in 字串:
**塊print
test = '你好\t謝謝
'for a in
test:
print(a)
運算結果:
你好 謝謝
process finished with exit code 0
注意:字串一旦建立無法修改,如果要修改,則會建立新的字串。
4.替換
test = 'abcabcabc
'a = test.replace('
a','
q',1) #
將q替換第乙個a
print(a)
運算結果:
qbcabcabcprocess finished with exit code 0
python基本數 python基本資料型別
1.數字 int 數字又分整型和浮點型,在python中宣告變數是不用宣告所以自己就會識別 a 10 整型 a1 1.24 浮點型 支援科學計數法,將10用e來代替 2.字串 str 在python中用引號引起來的就是字串,而且單引號和雙引號並沒有什麼區別 a string a1 string a2...
基本資料類
integer integer1 1 int integer2 integer1 將基本資料型別換成string字串型別 講字串轉換成基本資料型別 int num integer.parseint 1 判斷記憶體位址是否相同,用 判斷物件的資料是否相同,用 equals 比較是否相等,可用向下轉型方...
Python之路三 python基本資料型別(1)
1 int型別 int整型型別就是平時使用的整數。注意 在python3中,只有一種整數型別int,表示為長整型,沒有python2中的long。type 函式能用來檢視當前變數的資料型別。a 10print type a 列印如下 class int 2 float float浮點型別就是平時使用...