From 481d8b6b940d75b2a4d9023d802825324ec746af Mon Sep 17 00:00:00 2001 From: Jakob Papirov Date: Thu, 20 Apr 2023 08:07:04 +0200 Subject: [PATCH] Add files via upload --- en/lang/letters-all-en.py | 54 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 en/lang/letters-all-en.py diff --git a/en/lang/letters-all-en.py b/en/lang/letters-all-en.py new file mode 100644 index 0000000..e90fae7 --- /dev/null +++ b/en/lang/letters-all-en.py @@ -0,0 +1,54 @@ +# -*- coding: utf-8 -*- +import random as rand + +from library.welcomeScreen import welcome_en as welcome +from library.farwell import showTotalScoreBye_en as showTotalScoreBye +# https://stackoverflow.com/questions/20309456/call-a-function-from-another-file + +name, questionsNum = welcome() + +questionsKeeper = 1 +rightAns = 0 +progress = '' + +while questionsKeeper <= questionsNum: + + questionsKeeper += 1 + + alphabetBig = ['A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', + 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'X', 'Y', 'Z', + 'Å','Ä','Ö'] + + alphabetSmall = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', + 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'x', 'y', 'z', + 'å','ä','ö'] + + randAlphabet = rand.randint(0,2) + + if randAlphabet == 0: + randIntGen = rand.randint(0, alphabetBig.__len__() -1 ) + qLetter = alphabetBig[randIntGen] + + qIn = 'A' + else: + randIntGen = rand.randint(0, alphabetSmall.__len__() - 1) + qLetter = alphabetSmall[randIntGen] + + qIn = '' + + while qIn != qLetter: + qIn = str(input("Type {} ? ".format(qLetter))) + + if qIn == qLetter: + print(" :)") + print("") + progress = str(progress) + '=' + print("{}".format(progress)) + print("") + rightAns += 1 + break + else: + print(" :(") + print("") + +showTotalScoreBye(rightAns, questionsNum, name) \ No newline at end of file