Ifs Work Sheet
star
star
star
star
star
Last updated almost 2 years ago
5 questions
1
1
1
1
What is the output?grade = 85if grade >= 70: print("Pass")else: print("Fail")
What is the output?
grade = 85
if grade >= 70:
print("Pass")
else:
print("Fail")
1