Instagram
youtube
Facebook
Twitter

Calculate the Cube of a Number

A Python program to compute the cube of a given number by multiplying it by itself three times.

Code Explanation in Short Points:

  1. Taking User Input:
    • input("Enter a number: ") asks the user to enter a number.
       
    • int() converts the input into an integer and stores it in num.
       
  2. Calculating the Cube:
     
    • cube = num * num * num multiplies num by itself three times to find its cube.
       
  3. Displaying the Result:
     
    • print("Cube of", num, "is:", cube) prints the cube value.

 

Program:

num = int(input("Enter a number: "))

cube = num * num * num

print("Cube of", num, "is:", cube)