NP88. 句子拆分
描述
输入描述
输入一行字符串,仅包含空格和大小写字母。输出描述
输出分割后的单词列表,不必去重。示例1
输入:
Python is the best language
输出:
['Python', 'is', 'the', 'best', 'language']
Python 3 解法, 执行用时: 29ms, 内存消耗: 4480KB, 提交时间: 2022-08-03
list1 = input().split() print(list1)
Python 3 解法, 执行用时: 29ms, 内存消耗: 4480KB, 提交时间: 2022-07-28
a=input() aa=a.split() print(aa)
Python 3 解法, 执行用时: 29ms, 内存消耗: 4488KB, 提交时间: 2022-08-01
n = input() print(n.split())
Python 3 解法, 执行用时: 29ms, 内存消耗: 4488KB, 提交时间: 2022-07-30
s = list(input().split()) print(s)
Python 3 解法, 执行用时: 29ms, 内存消耗: 4492KB, 提交时间: 2022-08-05
print(input().split())