Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import random
- slowa = ['creeper', 'diament', 'dynamit', 'shulker', 'barwnik']
- slowo = random.choice(slowa)
- liczba_znakow = len(slowo)
- odkryte_slowo = ''
- for i in range(liczba_znakow):
- liczba1 = random.randrange(1, 10)
- liczba2 = random.randrange(1, 10)
- print(f'Ile to jest {liczba1} x {liczba2}')
- wynik = int(input('Odpowiedź: '))
- if wynik == liczba1 * liczba2:
- odkryte_slowo += slowo[i]
- else:
- odkryte_slowo += '#'
- print(f'odkryte słowo: {odkryte_slowo}')
- print('-----------------------------')
- while True:
- haslo = input('Podaj hasło: ')
- if haslo == slowo:
- print(f'Gratulacje, prawidłowe hasło to: {slowo}')
- break
- else:
- print('Podano błędne hasło, spróbuj ponownie.')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement