python 字串的魔法 1

2021-09-09 05:17:02 字數 710 閱讀 1293

# ctrl + ? 多行注釋/取消注釋

# str 字串的方法

#!/uer/bin/env python

# -*- coding:utf8 -*-

c = "alexalex"

v = c.capitalize() # 首字母大寫,其餘小寫

v1 = c.casefold() # 全變小寫

v2 = c.center(20, "*") # 一共20個字元,空字元是*

v3 = c.count("l") # 計算有多少個字元『l』

test = 'i am ,age '

v4 = test.format(name='alex', num='20') # 格式化 傳入的值

v5 = test.format_map() # 格式化 傳入的值

a = "alexalex89"

v6 = a.isalnum() # 判斷字串是否為數字或字元,是返回true,否返回false

v7 = a.find('le') # 檢測字串中是否包含子字串 str,是則返回開始的索引值,否返回-1

v8 = a.index('w') # 檢測字串中是否包含子字串 str,是則返回開始的索引值,否返回異常,程式通不過

print(v8)

python字串魔法

test alex print test.capitalize 首字母大寫 其他都變小寫 print test.casefold 變小寫 更牛逼 print test.lower 全部變小寫 print test.center 20,設定寬度,一共20個位置,將test放中間,其他用 拼接 prin...

python字串的魔法

print hello,world.判斷輸入是否為數字test 2 v1 test.isdecimal 這個用的最多,可以判斷小數 v2 test.isdigit v3 test.isnumeric 支援中文判斷 print v1,v2,v3 false false true判斷是否存在不可顯示的字...

Python 字串魔法二

從開始往後找,找到第乙個之後,獲取未知,檢測字串中是否包含子字串 str 如果指定 beg 開始 和 end 結束 範圍,則檢查是否包含在指定範圍內,找出第乙個在哪個位置 如果包含子字串返回開始的索引值,否則返回 1 test alexalex v test.find ex 5,8 print v ...