This commit is contained in:
SubhalakshmiK 2024-11-21 16:28:22 +01:00 committed by GitHub
commit edeec7b622
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

6
Depth_of_lake.py Normal file
View File

@ -0,0 +1,6 @@
H = float(input("Enter the value of H : "))
L = float(input("Enter the value of L : "))
x = ((L*L) - (H*H)) / (2*H)
print("Depth of lake at A is : ", x)