8000 GitHub - denis-drachinsky/4
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

denis-drachinsky/4

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

Repository files navigation

print('Welcome to AskPython Quiz') answer=input('Are you ready to play the Quiz ? (yes/no) :') score=0 total_questions=3

if answer.lower()=='yes': answer=input('Question 1: What is your Favourite programming language?') if answer.lower()=='python': score += 1 print('correct') else: print('Wrong Answer :(')

answer=input('Question 2: Do you follow any author on AskPython? ')
if answer.lower()=='yes':
    score += 1
    print('correct')
else:
    print('Wrong Answer :(')

answer=input('Question 3: What is the name of your favourite website for learning Python?')
if answer.lower()=='askpython':
    score += 1
    print('correct')
else:
    print('Wrong Answer :(')

print('Thankyou for Playing this small quiz game, you attempted',score,"questions correctly!") mark=(score/total_questions)*100 print('Marks obtained:',mark) print('BYE!')

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0