Notes/ML/GreaterThanOperatorProgram-200808-183418.py

16 lines
324 B
Python
Raw Normal View History

2022-04-23 14:04:50 +00:00
my_marks=35
if my_marks>35:
print("Congrats you have passed")
if my_marks < 35:
print("Sorry you failed")
if my_marks == 35:
print("You are on the border")
if my_marks != 100:
print("You didnt score 100%")
if my_marks >= 35:
print("Congrats you have just passed")