Python - Conditional Statements
What will be the output of this code?
score = 75
if score >= 60:
print('Pass')
else:
print('Fail')score = 75
if score >= 60:
print('Pass')
else:
print('Fail')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions