题目描述
想从以下文字中抽出不重复的字符,然后排序展示。
But soft what light through yonder window breaks
It is the east and Juliet is the sun
Arise fair sun and kill the envious moon
Who is already sick and pale with grief
自己的思路
1.先将文件中的字符全部提取出来,整理成一个字符库。
2.然后用变量跟字符库中的字符匹配,如果没有过,则赋值计入一个。
3.排序。
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
fh = open("word.txt")
lst=list()
word=0
for line in fh:
line = line.strip().split()
if word in line:
word=line
lst.append(word)
print(lst)
你期待的结果是什么?实际看到的错误信息又是什么?
(一)期待结果
['Arise', 'But', 'It', 'Juliet', 'Who', 'already', 'and', 'breaks', 'east', 'envious', 'fair', 'grief', 'is', 'kill', 'light', 'moon', 'pale', 'sick', 'soft', 'sun', 'the', 'through', 'what', 'window', 'with', 'yonder']
(二)遇见问题
1.从文件中提取出来的是4个列表,无法将4个列表合并成一个字符库
2.不知道怎么给word赋值