ICTPRG302CodingHomework/testScore.py

8 lines
211 B
Python
Raw Normal View History

#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")