Skip to content

Instantly share code, notes, and snippets.

@P1xt
Created August 5, 2014 05:01
Show Gist options
  • Save P1xt/7d30ed19b538c8f31ae8 to your computer and use it in GitHub Desktop.
Save P1xt/7d30ed19b538c8f31ae8 to your computer and use it in GitHub Desktop.
Testing Python gist
import math
ceil(84.2)
grade_report(80)
def grade_report(grade):
if grade >= 80:
return 'excellent'
elif grade >= 50:
return 'pass'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment