Python/gloss python string length

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串长度

弦长

要获取字符串的长度,请使用 len() 功能。

The len() 函数返回字符串的长度:

a = "Hello, World!"

print(len(a))