Re: convert string number to real number - ValueError: invalid literal for int() with base 10: '"2"'




You have to get rid of the double quotes first.

you mean replace them with nothing?

li[4].replace('"','')

once i do that, i should be able to use them as numbers.
.