Online Judge
Toggle navigation
C++题库系统 OJ
首页
问题列表
状态
排行榜
登录
首页
状态
71462
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)