I would like to know it it is possible to convert a string made of numbers and symbols into actual numbers an symbols, for example '(12+23)*4'
into (12+23)*4
script:
input = input('import calculation: ')
print(input)
Output ex:
3*5
Desired Output ex:
15
Thanks!