I have a problem converting string to float. For example, I want to get an input like 10**2 and I want the program to save the result of 10**2 in the variable.
like this :
Number = float(input("Enter the number : "))
print(number * 2)
something like this and when i run and it says :
Enter the number :
and I give it 10**2 I want it to return 200
like this :
Enter the number : 10**2
200
How can I do it? I tried different ways non worked.
10**2is100, not200.