在Python中,可以使用len()函數來統計字符串的字符數量。例如:
len()
string = "Hello World" count = len(string) print(count) # 輸出:11
另外,還可以使用循環來遍歷字符串并計數字符的數量。例如:
string = "Hello World" count = 0 for char in string: count += 1 print(count) # 輸出:11
這兩種方法都可以用來統計字符串中的字符數量。
億速云公眾號
手機網站二維碼
Copyright ? Yisu Cloud Ltd. All Rights Reserved. 2018 版權所有
廣州億速云計算有限公司粵ICP備17096448號-1 粵公網安備 44010402001142號增值電信業務經營許可證編號:B1-20181529