Skip to content

Instantly share code, notes, and snippets.

@jasongorman
Last active October 2, 2019 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasongorman/d54876d0376a07116f7376ef1b591818 to your computer and use it in GitHub Desktop.
Save jasongorman/d54876d0376a07116f7376ef1b591818 to your computer and use it in GitHub Desktop.
def floor(number):
return number - (number % 1)
print('The Square root of 25 =', sqrt(25));
print('The factorial of 5 is ', factorial(5))
print('The floor of 4.7 is', floor(4.7))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment