Python - Conditional Statements
What will this code print?
score = 85
if score >= 90:
print('A')
else:
print('B')score = 85
if score >= 90:
print('A')
else:
print('B')15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions