列表

详情


NP15. 截取用户名前10位

描述

牛客网正在录入用户的昵称,但是有的昵称太长了,对于这些过长的昵称,牛牛觉得截取昵称字符串前10个字符就可以了,你可以帮他写一个程序吗?

输入描述

输入一个字符串,长度一定不低于10。

输出描述

输出截取前10个字符后的子串。

示例1

输入:

NiuNiuisBest

输出:

NiuNiuisBe

原站题解

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

a=raw_input()
print(a[0:10])

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

name=raw_input()
print(name[0:10])

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

print(raw_input()[:10])

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

str=raw_input()
print(str[0:10])

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

a=raw_input()
print(a[:10])

上一题