65.8k views
0 votes
Test if a number grade is an A (greater than or equal to 90). If so, print "Great!".

Hint: Grades may be decimals.

in python

2 Answers

4 votes

grade = float(input("Enter your grade: "))

if grade >= 90:

print("Great!")

I hope this helps!

User Richard Jones
by
4.7k points
5 votes

Answer:

yes great

Explanation: sorry but I'm a little confused

User Cory House
by
4.1k points