19 lines
413 B
Python
19 lines
413 B
Python
import random
|
|
|
|
from dictionary import toki_pona_en
|
|
|
|
|
|
def test_en_toki_pona():
|
|
while True:
|
|
toki_pona = random.choice(list(toki_pona_en.keys()))
|
|
en = toki_pona_en[toki_pona]
|
|
while True:
|
|
toki_pona_guess = input(f'{en}? ')
|
|
if toki_pona_guess == toki_pona:
|
|
print('Correct!')
|
|
break
|
|
|
|
|
|
if __name__ == '__main__':
|
|
test_en_toki_pona()
|