Instagram
youtube
Facebook
Twitter

Calculate the Square of a Number

A Python program to compute the square of a given number by multiplying it by itself.

Code Explanation in Points:

  1. Taking User Input:
     
    • input("Enter a number: ") prompts the user to enter a number.
       
    • int() converts the input into an integer and stores it in num.
       
  2. Calculating the Square:
     
    • square = num * num multiplies num by itself to find its square.
       
  3. Displaying the Result:
     
    • print("Square of", num, "is:", square) outputs the calculated square.

 

Program:

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

square = num * num

print("Square of", num, "is:", square)