Skip to content

Instantly share code, notes, and snippets.

@macndesign
Created July 17, 2019 03:54
Show Gist options
  • Save macndesign/48c0d5f5e3b4d8edf6ea6e29f8b7e036 to your computer and use it in GitHub Desktop.
Save macndesign/48c0d5f5e3b4d8edf6ea6e29f8b7e036 to your computer and use it in GitHub Desktop.
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