How does one convert a string list such as:
string = ["+5*-5"]
into something such as
string = [+5*-5]
so I can evaluate each of this type of expression mathematically without using libraries, import, eval or similar
I've tried the usual type converts and this does not work unfortunately.
Many thanks