This file contains hidden or 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
background: linear-gradient(270deg, #00b2e8, #bb99ff); | |
background-size: 400% 400%; | |
-webkit-animation: top-card-animation 30s ease infinite; | |
-moz-animation: top-card-animation 30s ease infinite; | |
-o-animation: top-card-animation 30s ease infinite; | |
animation: top-card-animation 30s ease infinite; | |
@-webkit-keyframes top-card-animation { | |
0%{background-position:0% 50%} |
This file contains hidden or 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
wrong = 0 | |
answered = 0 | |
program_running = 1 | |
def start_program(): | |
global program_running | |
user_choice = "" | |
while program_running: | |
print_menu() |