Python Program To Find Square Root of User Input Number.
Python Program to find square root of user input number.
Source Code
# This program find square root of user input number
# Store input number from user
num = int(input('Enter a number: '))
# Find the square root
sqrt = num**(1/2)
# Display the square root
print('The square root of given number is ',sqrt)
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