I have a list with the following entries. How can I remove the single quotes for each entries in the list? I need to find the minimum value in the list. When I used min function, result is wrong due to the single quotes in the list. I know the workaround will be, making a script to save the minimum at each loop. But is there any other way to remove the single quotes, which makes the process simpler?
['-406', '-140', '-141', '-66.', '-135', '-142', '-136','-0.01']
The below list is derived from a text file having lot of strings and after using split only Iam getting the single quotes. Can I do something there to avoid the single quotes?
Thanks