This file contains 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
#!/usr/bin/env python3 | |
import random | |
import os | |
from num2words import num2words | |
n = 0 | |
points = 25 # количество попыток | |
language = "en" # язык приложения | |
RED='\033[1;31m' | |
GRN='\033[1;32m' |