8 lines
211 B
Python
8 lines
211 B
Python
|
#Obtaining user's score
|
||
|
score=int(input("Please enter your test score: "))
|
||
|
|
||
|
#Determining users score
|
||
|
if score>50:
|
||
|
print('Congratulations, you passed your test!')
|
||
|
|
||
|
input("Press Enter on the keyboard to exit")
|