列表

详情


NP88. 句子拆分

描述

英文句子都是由单词之间通过空格间隔而组成,牛牛想知道一句英语句子里面包含有哪些单词,你能使用split函数将它们全部按照空格分割,记录进列表中吗,请输出列表。

输入描述

输入一行字符串,仅包含空格和大小写字母。

输出描述

输出分割后的单词列表,不必去重。

示例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())

上一题