Python program to print the square of a number || Python practice Programs day 1 || codeandman (Source Code)
In this post I am going to give you the source code of my video called "Python program to print the square of a number || Python practice Programs day 1 || codeandman". So let's begin with this post :
Here's the source code :
# To print the square of a number
x = int(input("Enter a number :"))
sqr = x*x
print(f"The Square of the number is : {sqr}")
I hope that you liked this post. this was a very small post.
Comments
Post a Comment