Created
September 20, 2019 17:38
-
-
Save XeroHero/7e43e777a6e53b7f987fd2502b802aab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grade = int(input("Please enter a grade. I will tell you if you passed or not!")) | |
if (grade > 40): | |
print("You passed! Genius!") | |
else: | |
print("Try harder next time!") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment