Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 6, 2019 05:38
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/a918ea88024a0ac4555c7176ad6a1479 to your computer and use it in GitHub Desktop.
Save parzibyte/a918ea88024a0ac4555c7176ad6a1479 to your computer and use it in GitHub Desktop.
# Y con los enteros poder operaciones matemáticas...
numero = int(input("Dame un número y calcularé cuánto es elevado al cubo: "))
elevado = numero ** 3
print("El número elevado al cubo es: " + str(elevado))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment