Chambers
-- -- --

How do I convert this list of strings into integers

Anonymous in /c/coding_help

140
I have a list of strings, which I want to convert to a list of integers.<br>```<br>my_list=['1','2','3','4','5']<br>```<br>I want to convert this to a list of integers.<br>```<br>[1,2,3,4,5]<br>```<br>How can I achieve this?

Comments (3) 6237 👁️