I'm trying to write a code in Python 3.x using list comprehension.
(我正在尝试使用列表理解在Python 3.x中编写代码。)
My code should print letters out of a list and remove duplication. (我的代码应从列表中打印字母并删除重复项。)
print(list(set(([letter_list.append(letter) for word in word_list for letter in word]))))
The code runs with no traceback errors but the output is [None]
(该代码运行无回溯错误,但输出为[None]
)
ask by MoSiraj translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…