Strings and arithmetic operations
people. Can you please tell me how can I turn a string into arithmetic operation. For example: string_with_operation = "(23 + 3) / 4" usual_operation = (23 + 3) / 4 I want a string_with_operation to be the same as usual_operation I tried turn string_with_operation into an integer and a float but as expected it… Read More Strings and arithmetic operations