要获取字符串的长度,可以使用len()函数,该函数会返回字符串中字符的数量。下面是一个示例代码:```pythonstring = "Hello, world!"length = len(string)print(length)```输出结果为:13