Python中字串常用的方法

2021-08-06 06:07:34 字數 1366 閱讀 1644

python中字串常用的方法:

information = "this is shanghai city,"

information1 = "it's very bustling"

aaa = "i come from ,and myhometown is "

print(information.center(50,'*')) #長度為50,並且居中

print(information.find('s')) #查詢字串的索引位置,預設是第乙個,和index方法類似

print(information.startswith('th')) #判斷字串以什麼開頭

print(information.strip()) #去掉字串兩頭的空格和換行符

print(information.split('i')) #去掉字串兩頭的空格和換行符

print(aaa.format(city='石家莊',name="行唐")) #字串的格式化另一種方式

print(aaa.format_map()) #字串的格式化,中間傳的是字典,這種不常用

print(information.isdigit()) #判斷字串是不是數字

print(information.lower()) #小寫

print(information.upper()) #大寫

print(information.replace('this','this',1)) #替換,後的1表示,替換的次數

print(''.join([information,information1])) #字串拼接,中間用列表,元組,字典的形式傳都可以

用python寫九九乘法表(僅作為一種娛樂)

python2.7裡面的**

#!/usr/bin/env python

forline

in range(1,10):

for width in range(1,line+1):

print "%s*%s=%s " %(line,width,line*width),

print

python3.x裡面的**

#!/usr/bin/env python

forline

in range(1,10):

for width in range(1,line+1):

print("%s*%s=%s " %(line,width,line*width),end="")

print()

python中字串常用方法

str python string function 生成字串變數str python string function 字串長度獲取 len str 例 print s length d str,len str 一 字母處理 全部大寫 str.upper 全部小寫 str.lower 大小寫互換 s...

python中字串常用方法總結

字串的常用操作 1.大小寫轉換 str1 hellopythonhelloworld str2 hello python 999,hello world str3 hellopython,helloworld print str2.title 返回每個單詞首字母大寫,其他字母小寫的字串 print ...

python 字串常用方法

python 字串的常用方法 1.len str 字串的長度 2.startswith str 檢視字串是否以str子串開頭,是返回true,否則返回false 3.index str 查詢字串中第一次出現的子串str的下標索引,如果沒找到則報錯 4.find str 查詢從第0個字元開始查詢第一次...