Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created April 16, 2019 17:18
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 parzibyte/ef7897436068991076bace4ec4ce452c to your computer and use it in GitHub Desktop.
Save parzibyte/ef7897436068991076bace4ec4ce452c to your computer and use it in GitHub Desktop.
"""
Raíz cúbica en Python
@author parzibyte
"""
def raiz_cubica(numero):
return numero**(1. / 3.)
print(raiz_cubica(27)) # 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment