Skip to content

Instantly share code, notes, and snippets.

@seyyah
Created May 5, 2010 11:44
Show Gist options
  • Save seyyah/390677 to your computer and use it in GitHub Desktop.
Save seyyah/390677 to your computer and use it in GitHub Desktop.
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