📌  相关文章
📜  计算字符串中的字符 python 代码示例

📅  最后修改于: 2022-03-11 14:45:34.960000             🧑  作者: Mango

代码示例3
#use the built in function len()

len("hello")

#or you can count the characters in a string variable

a = "word"
len(a)