方法一:使用len()函数获取字符串的长度 len()函数是Python中一个内置函数,可以用于获取字符串、列表等对象的长度。下面是一个简单的示例代码:string = "Hello, world!"length = len(string)print("The length of the string is:", length)输出结果为:The length of the string is: 13 方法二:使用循环...