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.
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)
Comments
Post a Comment