Python字串測試

2021-07-02 02:14:21 字數 976 閱讀 2220

#-*-coding:utf-8-*-

import sys

def main():

sys.stdout.write("python字串測試\n")

str1="這門語言叫'python'"#字串巢狀表達

print str1

#python列表測試

array=[11,22,33]

print array[2]

array[1]="a"

print array

l=[123,'混合列表',1.23]

print len(l)

print l[1]

print l[:-1]#不包含最後乙個

print l+[44,55,66]#新增資料

print "—————————————————分割線—————————————————"

test=[11,22,33,44,55,66,77,88]

print test[0:7:3]#包括test[0],不包括test[7],而且步長為3

print test[-3:]#抽取最後3個

print "—————————————————分割線—————————————————"

m=[[1,2,3],[4,5,6],[7,8,9]]

print m[2]

col2=[row[1] for row in m]#獲取矩陣中的第1列的資料

print col2

print "—————————————————分割線—————————————————"

n=["a","b","c","a"]

c=n.count("a")#返回字元a在陣列中的數量

print c

n.reverse()#顛倒陣列中的字元順序

print n

if __name__=="__main__":

main()

python字串 Python 字串

建立字串很簡單,只要為變數分配乙個值即可。例如 var1 hello world var2 python runoob python訪問字串中的值python不支援單字元型別,單字元在 python 中也是作為乙個字串使用。python訪問子字串,可以使用方括號來擷取字串,如下例項 例項 pytho...

python字串 python字串

單引號示例常用的轉義字元 轉義字元案例1format 格式化練習1 help sisdigit,isnumeric,isdecimal 三個判斷數字的函式 isalnum 檢查字串是否由字母加數字組成 s test1split 字串拆分 splitlines 已換行符拆分 join 合成字串 upp...

python字串用法 python字串使用總結

python 字串使用總結 字串是程式中最常見的資料型別。在 python 中,可以使用三種方式定義字串。單 引號 雙引號和三引號。例如 string string string 或者是 string 在使用上,單引號和雙引號沒有什麼區別。三引號的主要功能是在字串中可以 包含換行 也就是說,在三引號...