https://learnpythonlanguagesi.blogspot.com/ is a programming tutorials / educational site containing video and text based tutorials for Python programming. Which help people to learn python language easily.
"Hello word " in Python
Get link
Facebook
X
Pinterest
Email
Other Apps
-
Hello word in Python:- It is very easy to write hello word in python language.
The Square Root of the given number print('\t\t\t\t Square Root') a = input("Enter a number = ") sq = float(a) ** 0.5 print("\n The Square Root of the number is = ", sq)