Created
July 17, 2019 03:54
-
-
Save macndesign/48c0d5f5e3b4d8edf6ea6e29f8b7e036 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
qtd = input('Qtd de tentativas: ') | |
palavras = [] | |
for i in range(int(qtd)): | |
palavra = input('Digite a palavra: ') | |
tempo = "{0:.2f}".format(len(palavra)/100) | |
palavras.append( | |
dict(palavra=palavra, tempo=tempo) | |
) | |
print(palavras) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment