将不同行中的单词拆分为 Python 中的列表
Splitting words in different lines to a list in Python
我有一个文本文件,其中的文本为:
Hello All,
Hope you are enjoying learning Python
We have tried to cover every point in detail to avoid confusion
Happy Reading
我想按照以下格式将每个单词分隔成一个列表,
['Hello','All,','Hope','you','are','enjoying','learning','Python','We','have','tried','to','cover','every','point','in','detail','to','avoid','confusion','Happy','读书。
我已经尝试了下面有效的代码,但唯一的问题是输出进入双方括号并换行,如下所示
words = [open('example.txt').read().split()]
words
[['Hello',
'All,',
'Hope',
'you',
'are',
'enjoying',
'learning',
'Python',
'We',
'have',
'tried',
'to',
'cover',
'every',
'point',
'in',
'detail',
'to',
'avoid',
'confusion',
'Happy',
'Reading']]
我是 python 的新手,正在学习 .如果有人可以帮助我,那将很有帮助。我想要单个方括号中的输出并继续。
words = open('example.txt').read().split()
print(words)
只需删除支架。
或者如果您必须使用旧代码,您可以使用 words[0]。
我有一个文本文件,其中的文本为:
Hello All,
Hope you are enjoying learning Python
We have tried to cover every point in detail to avoid confusion
Happy Reading
我想按照以下格式将每个单词分隔成一个列表, ['Hello','All,','Hope','you','are','enjoying','learning','Python','We','have','tried','to','cover','every','point','in','detail','to','avoid','confusion','Happy','读书。 我已经尝试了下面有效的代码,但唯一的问题是输出进入双方括号并换行,如下所示
words = [open('example.txt').read().split()]
words
[['Hello', 'All,', 'Hope', 'you', 'are', 'enjoying', 'learning', 'Python', 'We', 'have', 'tried', 'to', 'cover', 'every', 'point', 'in', 'detail', 'to', 'avoid', 'confusion', 'Happy', 'Reading']] 我是 python 的新手,正在学习 .如果有人可以帮助我,那将很有帮助。我想要单个方括号中的输出并继续。
words = open('example.txt').read().split()
print(words)
只需删除支架。
或者如果您必须使用旧代码,您可以使用 words[0]。