Posts by Raphael Theodoro • 1 point
1 post
-
-2
votes1
answer29
viewsQ: (Python) I also have a text file with a few words
def carrega_palavras(): with open("palavras.txt", 'r', encoding='utf-8') as arquivo: palavras = [] for linha in arquivo: linha = linha.strip() palavras.append…
pythonasked Raphael Theodoro 1