Write A Python Program to Calculate The Square Of A Number Entered By The user?

 Write A Python Program to Calculate the Square Of A Number Entered By The user?


Code:

num = int(input("Enter The Number :"))
Square =(num**2)
print("The Square Of The ",num,"is :",Square)

Output:







Download Source Code

Comments

Popular posts from this blog

Write A Python Program, Create n Empty Dictionary Allow 4 Friends To, Enter Their Favorite Programming Language As values and User Keys as their Name Assume That The Names Are Unique.

Write Python Program To Store Seven Fruits Name In a List Enter By The User