字串的操作

鷹擊長空_520發表於2019-07-21

1、在python中,字串就是一個字元的序列,用成對的單引號或雙引號括起來的。

a='niissskkkkkk'

2、基本的字串運算

len(a)#字串的長度

print(a+'json')#字串的拼接

print(a*3)#字串的重複

print('n' in a)#成員運算子in

for char in a: print(char)#列舉字串中的每個字元。

3、編寫vowels_count函式,計算字串中母音字母的數目。 def vowels_count(s): count=0 for c in s: if c in 'aeiouAEIOU': count+=1 return count print(vowels_count('helloworld'))

相關文章