

InterviewSolution
Saved Bookmarks
1. |
How to write a expressions in Python √a2+b2+c2 |
Answer» num1=int(input("enter a"))num2=int(input("enter b"))num3=int(input("enter c"))d=num1**2+num2**2+num3**2s1=d**0.5print(s1)i hope this will help you | |