Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
71462 胡海峰老师 字符串的长度 Python3 Accepted 34 MS 3724 KB 128 2024-04-24 12:17:42

Tests(1/1):


Code:

s = input() def len_str(a): cnt = 0 for le in a: cnt +=1 return cnt ans = len_str(s) print(ans)