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

Solutions on MaxInterview for write a program that takes a number and print its square using input by the best coders in the world

showing results for - "write a program that takes a number and print its square using input"
Julia
08 Jan 2019
1# Python Program to Calculate Square of a Number
2
3number = float(input(" Please Enter any numeric Value : "))
4
5square = number * number
6
7print("The Square of a Given Number {0}  = {1}".format(number, square))
similar questions