Num1=25num2=num1**(1) print(num2)
Answers
Answered by
0
Output:
25
Explaination:
num1 = 25
num2 = num 1 ^ 1 =
print(num2) => 25
Similar questions