Skip to content

Commit acc2e90

Browse files
authored
Remove one comment from squareRoot.py
1 parent 2d7ca8f commit acc2e90

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Python101/squareRoot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
# method 3 (using exponentiation operator **)
1414
num = float(input("Enter a number to get its square root: "))
1515

16-
sqrt = num**(0.5) # sqrt = num**(1/2)
17-
print (f"The square root of the input number {num} is {sqrt}")
16+
sqrt = num**(0.5)
17+
print (f"The square root of the input number {num} is {sqrt}")

0 commit comments

Comments
 (0)