Skip to content

Instantly share code, notes, and snippets.

@SoftwareDevPro
Created January 27, 2019 00:32
Show Gist options
  • Save SoftwareDevPro/7c645fce4f772f9c86f3c5b5a79be735 to your computer and use it in GitHub Desktop.
Save SoftwareDevPro/7c645fce4f772f9c86f3c5b5a79be735 to your computer and use it in GitHub Desktop.
Square Root of a Number in Python
def square_root(num):
return num ** 0.5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment