This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Cross!Alex21
Recipients Cross!Alex21, paul.moore, steve.dower, tim.golden, zach.ware
Date 2018-07-28.10:59:29
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1532775569.15.0.56676864532.issue34258@psf.upfronthosting.co.za>
In-reply-to
Content
I was writing a code for my test in idle python.When i run the module it's just keeps restarting.
This is my code:

sins = 0
check = input()
if check == "check_sins":
        print(sins)
second = input("Ok,you can start when you are ready,type Im Ready! if you want to start the game")
print("Welcome to How smart are you test")
name = input("What's your name? ")
print(name)
if name == "Dimitrije":
    print("Nice to meet you Dimitrije")
start = input("Ready to start the test: ")
if start == "Yes":
    print("A) Gorillaz")
    print("B) Alvin and the chipmunks")
    print("C) Despacito 2")
    print("D) Who are you even")
    q1 = input("Which was the first animated band ever created? ")
    a1 = "A) Gorillaz"
    b1 = "B) Alvin and the chipmunks"
    c1 = "C) Despacito 2"
    d1 = "D) Who are you even"
    if q1 == "A" or q1 == "a":
        print("You are right,adding 10 sins for that")
        sins += 10
    else:
            sins = sins - 10
    print("A) Milan")
    print("B) ")
    print("")
    print("")
else:
    print(second)
    if start == "Im ready!":
        print("Ok,let's start")
    print(q1)
    print(a1)
    print(b1)
    print(c1)
    print(d1)
    if q1 == "A":
        print("You are right,adding 10 sins for that")
        sins = sins + 10
Note:I started learning python yesterday and sins are just a refrence of the youtube channel name called CinemaSins.So don't judge.
History
Date User Action Args
2018-07-28 10:59:29Cross!Alex21setrecipients: + Cross!Alex21, paul.moore, tim.golden, zach.ware, steve.dower
2018-07-28 10:59:29Cross!Alex21setmessageid: <1532775569.15.0.56676864532.issue34258@psf.upfronthosting.co.za>
2018-07-28 10:59:29Cross!Alex21linkissue34258 messages
2018-07-28 10:59:29Cross!Alex21create