islower():返回true,如果字串至少有乙個字母,並且所有字母都是小寫;
例如:>>> spam='hello world'
>>> spam.islower()
false
isupper():返回true,如果字串至少有乙個字母,並且所有字母都是大寫;
例如:>>> 'hello'.isupper()
true
isalpha():返回true,如果字串只包含字母,並且非空;
例如:>>> 'hello'.isalpha()
true
isalnum():返回true,如果字串只包含字母或數字或他們的組合,並且非空;
例如:>>> 'hello123'.isalnum()
true
isdecimal():返回true,如果字串只包含數字字元,並且非空;
例如:>>> '123'.isdecimal()
true
isspace():返回true,如果字串只包含空格、製表符和換行,並且非空;
例如:>>> ' '.isspace()
true
istitle():返回true,如果字串僅包含以大寫字母開頭、後面都是小寫字母的單詞;
例如:>>> 'this is title case'.istitle()
true
字串方法
find 方法可以在乙個較長的字串中查詢子字串,並返回子字串所在位置最左邊的索引。如果沒有找到則返回 1。hello,world.cold enough?find world 6 title hello,world.cold enough?title.find hello 0 title.find ...
字串方法
coding utf 8 字串也可以理解為乙個容器,也存在索引值,而字串中的每乙個字元可以理解為是一 個元素。1 len 獲取字串長度的方法 print 字串長度len len abcd 2 字串的取值 string abcdef r1 string 0 r2 string 1 print r1,r...
字串方法
字串方法 在這裡插入 片 定義乙個字串 var box 我的世界 返回指定位置的字串 box.charat 2 console.log box.charat 2 字串的長度 box.length console.log box.length 英文大小寫 var box2 holle 大寫 box2....