Python Program To Find Square Of User Input Number
Python Program to find square of user input number.
Source Code
# This program find square of user input number
# Store input number from user
num = int(input('Enter a number: '))
# Find the square
sq = num**2
# Display the square
print('The square of given number is ',sq)
Click here to run this code in online πππcompiler
Click here to get app for android.
π⤵️
➡️➡️➡️πππ
πππ⬅️⬅️⬅️
Output
Create by π °πππ ½ π Ίπππ ·ππ °π ·Send Feedback To ππ⬇️⬇️

Comments
Post a Comment