hi I'm trying to convert this list of strings:
lists=['111,222','121,121']
into a list of integers but keep running into errors, any advice would be helpful.
I've tried:
results=[int(i) for i in lists]
print(results)
but keep getting "invalid literal for int() with base 10: '111,222'"
"111,222"to be converted into?