文章摘要:在python中用什么函数计算字符长度 计算字符串长度的函数python
python中使用len函数计算字符长度,具体方法如下: len()函数语法: len( s ) len()函 […]
python中使用len函数计算字符长度,具体方法如下:
len()函数语法:
len( s )
len()函数使用方法:
#计算字符的长度
str1 = 'abcdefg'
len_str1 = len(str1)
print(len_str1)
str2 = '1234'
len_str2 = len(str2)
print(len_str2)
输出结果为:
7
4