Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobPapirov committed Apr 20, 2023
1 parent 5723875 commit 481d8b6
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions en/lang/letters-all-en.py
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 481d8b6

Please sign in to comment.