In this we are going to see a program to find Cube of a Number in Python Programming Language.
x = int(input("Enter The Number : "))
#First Method
cube = x * x * x
print("Cube Is : ",cube)
#Second Method
cube = x**3
print("Cube Is : ",cube)
#Coded By DHIRAJ SHELKE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP