Answers for "Write a program that takes a number and print its square using input"

0

Write a program that takes a number and print its square using input

# Python Program to Calculate Square of a Number

number = float(input(" Please Enter any numeric Value : "))

square = number * number

print("The Square of a Given Number {0}  = {1}".format(number, square))
Posted by: Guest on July-31-2021

Code answers related to "Write a program that takes a number and print its square using input"

Python Answers by Framework

Browse Popular Code Answers by Language