Python 3 教程 Python 判断字符串长度

yehudi · 2022-03-15 13:58:00 · 热度: 65

给定一个字符串,然后判断该字符串的长度。

实例 1:使用内置方法 len()

str = "codercto" print(len(str))

执行以上代码输出结果为:

6

实例 2:使用循环计算

def findLen(str): counter = 0 while str[counter:]: counter += 1 return counter str = "codercto" print(findLen(str))

执行以上代码输出结果为:

6

查看更多 Python 实例

猜你喜欢:
暂无回复。
需要 登录 后方可回复, 如果你还没有账号请点击这里 注册