NP3. 读入字符串
描述
输入描述
输入一行字符串。输出描述
将读入的变量输出。示例1
输入:
Nowcoder
输出:
Nowcoder
Python 解法, 执行用时: 11ms, 内存消耗: 2864KB, 提交时间: 2022-08-05
s = raw_input() print(s)
Python 解法, 执行用时: 11ms, 内存消耗: 2944KB, 提交时间: 2022-08-05
s=raw_input() print s
Python 解法, 执行用时: 11ms, 内存消耗: 2948KB, 提交时间: 2022-08-01
s=raw_input() print s
Python 解法, 执行用时: 12ms, 内存消耗: 2948KB, 提交时间: 2022-08-02
str1 = raw_input() print str1
Python 解法, 执行用时: 12ms, 内存消耗: 2948KB, 提交时间: 2022-07-31
name = raw_input() print(name)