Python基本資料型別常用方法
阿新 • • 發佈:2018-12-25
#!/usr/bin/env python # -*- coding:utf-8 -*- #基本資料型別 #檢視資料型別 print("1、") a = "123" print(type(a),a) #將字串轉換為數字 print("2、") b = int(a) print(type(b),b) #將num轉換為16進位制數 print("3、") num = "b" v = int(num, base=16) print(v) age = 5 # 1 1 # 2 10 # 3 11 # 4 100 # 5 101 # 當前數字的二進位制,至少用n位表示 print("4、") r = age.bit_length() print(r) test = "aLex" # 首字母大寫 print("5、") v = test.capitalize() print(v) # 所有變小寫,casefold更牛逼,很多未知的對應變小寫 print("6、") v1 = test.casefold() print(v1) v2 = test.lower() print(v2) # 設定寬度,並將內容居中 # 20 代指總長度 # * 空白未知填充,一個字元,可有可無 print("7、") v = test.center(20,"中") print(v) #左邊填充 test = 'alex' v = test.ljust(20,"*") print(v) #右邊填充 test = 'alex' v = test.rjust(20,"*") print(v) #預設用 0 填充 test = 'alex' v = test.zfill(20) print(v) # 去字串中尋找,尋找子序列的出現次數 print("8、") test = "aLexalexr" v = test.count('ex') print(v) #開始位置和結束位置,格式為[start, end),即包括開始,不包括結束。 print("9、") test = "aLexalexr" v = test.count('ex',6,8) print(v) # 欠 # encode # decode # 以什麼什麼結尾 # 以什麼什麼開始 print("10、") test = "alex" v = test.endswith('ex') v = test.startswith('ex') print(v) # 把字串中的 tab 符號('\t')轉為空格 #6個字元分一段,如果出現\t,就用空格補齊計數,即123456+78 +9=13個字元,其中空格4個。 print("11、") test = "12345678\t9" v = test.expandtabs(6) print(v,len(v)) #expandtabs,斷句20。 print("12、") test = "username\temail\tpassword\nlaiying\
[email protected]\t123\nlaiying\[email protected]\t123\nlaiying\[email protected]\t123" v = test.expandtabs(20) print(v) # 從開始往後找,找到第一個之後,獲取其未知 # > 或 >= print("13、") test = "alexalex" # 未找到 -1 v = test.find('ex') print(v) # index找不到,報錯 忽略 # test = "alexalex" # v = test.index('8') # print(v) # 格式化,將一個字串中的佔位符替換為指定的值 print("14、") test = 'i am {name}, age {a}' print(test) v = test.format(name='alex',a=19) print(v) test = 'i am {0}, age {1}' print(test) v = test.format('alex',19) print(v) # 格式化,傳入的值 {"name": 'alex', "a": 19} test = 'i am {name}, age {a}' v1 = test.format(name='df',a=10) v2 = test.format_map({"name": 'alex', "a": 19}) # 字串中是否只包含 字母和數字 print("15、") test = "123" v = test.isalnum() print(v) # 是否是字母,漢字 print("16、") test = "as2df" v = test.isalpha() print(v) # 當前輸入是否是數字 print("17、") test = "二" # 1,② v1 = test.isdecimal() # 十進位制小數,用的最多 v2 = test.isdigit() # 包含特殊符號"②"等,不支援中文 v3 = test.isnumeric() # 包含特殊符號,支援中文"二" print(v1,v2,v3) # 是否存在不可顯示的字元 # \t 製表符 # \n 換行 print("18、") test = "oiuas\tdfkj" v = test.isprintable() print(v) # 判斷是否全部是空格 print("19、") test = " " v = test.isspace() print(v) # 判斷是否是標題 print("20、") test = "Return True if all cased characters in S are uppercase and there is" v1 = test.istitle() print(v1) v2 = test.title() print(v2) v3 = v2.istitle() print(v3) # ***** 將字串中的每一個元素按照指定分隔符進行拼接 print("21、") test = "你是風兒我是沙" print(test) # t = ' ' v = "_".join(test) print(v) # 判斷是否全部是大小寫 和 轉換為大小寫 print("22、") test = "Alex" v1 = test.islower() v2 = test.lower() print(v1, v2) v1 = test.isupper() v2 = test.upper() print(v1,v2) ## 刪除左側字串:空格 print("23、") str = " this is string example....wow!!! " print (str.lstrip()) ## 刪除右側字串:空格 print (str.rstrip()) ## 刪除左右字串:空格 print (str.strip()) ## 刪除左側字串:***** str = "*****this is string example....wow!!!*****" print (str.lstrip('*')) ## 刪除右側字串:***** print (str.rstrip('*')) ## 刪除左右側字串:***** print (str.strip('*')) #移除匹配字元,先進行最多匹配 # test = "xalex" # v = test.lstrip() # v = test.rstrip('9lexex') # v = test.strip() # print(v) # 去除\t \n # test = "\nxalex" # v = test.lstrip() # v = test.rstrip() # v = test.strip() # print(v) # 對應關係替換 print("24、") test = "aeiou" test1 = "12345" v = "asidufkasd;fiuadkf;adfkjalsdjf" m = str.maketrans("aeiou", "12345") new_v = v.translate(m) print(new_v) # 分割為三部分 print("25、") test = "testasdsddfg" v = test.partition('s') print(v) v = test.rpartition('s') print(v) # 分割為指定個數 print("26、") v = test.split('s',3) print(v) v = test.rsplit('s',2) print(v) # 分割,只能根據,true,false:是否保留換行 print("27、") test = "asdfadfasdf\nasdfasdf\nadfasdf" v = test.splitlines(False) print(v) # 以xxx開頭,以xx結尾 print("28、") test = "backend 1.1.1.1" v = test.startswith('a') print(v) v = test.endswith('a') print(v) # 大小寫轉換 print("29、") test = "aLex" v = test.swapcase() print(v) # 字母,數字,下劃線 : 識別符號 def class # 判斷字串是否可為合法的識別符號 print("30、") a = "def" v = a.isidentifier() print(v) # 27 將指定字串替換為指定字串 print("31、") test = "alexalexalex" v = test.replace("ex",'bbb') print(v) v = test.replace("ex",'bbb',2) print(v) ###################### 7個基本魔法 ###################### # join # '_'.join("asdfasdf") # split # find # strip # upper # lower # replace ###################### 4個灰魔法 ###################### test = "鄭建文妹子有種衝我來" # 一、for迴圈 # for 變數名 in 字串: # 變數名 # break # continue # index = 0 # while index < len(test): # v = test[index] # print(v) # # index += 1 # print('=======') for zjw in test: print(zjw) test = "鄭建文妹子有種衝我來" for item in test: print(item) break for item in test: continue print(item) # 二、索引,下標,獲取字串中的某一個字元 # v = test[3] # print(v) # 三、切片 # v = test[0:-1] # 0=< <1 # print(v) # 四、獲取長度 # Python3: len獲取當前字串中由幾個字元組成 # v = len(test) # print(v) # 注意: # len("asdf") # for迴圈 # 索引 # 切片 # 五、獲取連續或不連續的數字, # Python2中直接建立在內容中 # python3中只有for迴圈時,才一個一個建立 # r1 = range(10) # r2 = range(1,10) # r3 = range(1,10,2) # 幫助建立連續的數字,通過設定步長來指定不連續 # v = range(0, 100, 5) # # for item in v: # print(item) ##### 練習題:根據使用者輸入的值,輸出每一個字元以及當前字元所在的索引位置 ##### # test = input(">>>") # for item in test: # print(item) # 將文字 對應的索引打印出來: # test = input(">>>") # print(test) # test = qwe test[0] test[1] # l = len(test) # l = 3 # print(l) # # r = range(0,l) # 0,3 # for item in r: # print(item, test[item]) # 0 q,1 w,2 e # test = input(">>>") # for item in range(0, len(test)): # print(item, test[item]) ###################### 1個深灰魔法 ###################### # 字串一旦建立,不可修改 # 一旦修改或者拼接,都會造成重新生成字串 # name = "zhengjianwen" # age = "18" # # info = name + age # print(info)