Skip to content

Commit 89ebaca

Browse files
created power_of_n.py
1 parent c2da1a3 commit 89ebaca

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

power_of_n.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,12 @@ def binaryExponentiation(self, x: float, n: int) -> float:
4646
return result
4747

4848

49-
if __name__ == "main":
50-
obj = Solution() #Creating object of the class Solution
49+
obj = Solution() #Creating object of the class Solution
5150

52-
#Taking inouts from the user
53-
x = float(input("Enter the base number: "))
54-
n = int(input("Enter the power number: "))
51+
#Taking inouts from the user
52+
x = float(input("Enter the base number: "))
53+
n = int(input("Enter the power number: "))
5554

56-
#calling the function using object obj to calculate the power
57-
answer = obj.binaryExponentiation(x, n)
58-
print(answer) #answer
55+
#calling the function using object obj to calculate the power
56+
answer = obj.binaryExponentiation(x, n)
57+
print(answer) #answer

0 commit comments

Comments
 (0)