列表

详情


NP11. 单词的长度

描述

牛妹正在学英语,但是背单词实在是太痛苦了,她想让你帮她写一个小程序,能够根据输入的单词,快速得到单词的长度。

输入描述

输入一个字符串,仅包含大小写字母。

输出描述

输出字符串的长度。

示例1

输入:

Hello

输出:

5

原站题解

Python 解法, 执行用时: 13ms, 内存消耗: 2944KB, 提交时间: 2022-08-05

a=raw_input()
b=len(a)
print(b)

Python 解法, 执行用时: 13ms, 内存消耗: 2984KB, 提交时间: 2022-07-29

str1 = raw_input()
print(len(str1))

Python 解法, 执行用时: 15ms, 内存消耗: 2996KB, 提交时间: 2022-08-04

print(len(raw_input()))

Python 3 解法, 执行用时: 29ms, 内存消耗: 4508KB, 提交时间: 2022-08-02

a = input()
print(len(str(a)))

Python 3 解法, 执行用时: 30ms, 内存消耗: 4480KB, 提交时间: 2022-08-06

alpha=input()
print(len(alpha))

上一题