Greater and less than
Modify the code in the editor to make message_1
equals to "Python is Awesome"
and message_2
equals to "Python is Great"
Solution 1
x = 15
if x > 10:
message_1 = "Python is Awesome"
if x < 20:
message_2 = "Python is Great"
print(message_1)
print(message_2)