Created
May 5, 2010 11:44
-
-
Save seyyah/390677 to your computer and use it in GitHub Desktop.
This file contains 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
if score >= 90: | |
print 'A' | |
elif score >= 80: | |
print 'B' | |
elif score >= 60: | |
print 'D' | |
else: | |
print 'F' | |
if n < 0: | |
n = abs(n) | |
print math.sqrt(n) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment