python获取字符串长度

len(str)获取字符串长度

str = "abc"
len(str)  # 3
原文地址:https://www.cnblogs.com/luguankun/p/11901981.html