Source Code:
(back to article)
string_list = ["1", "2", "3", "4"] int_list = list(map(lambda x: int(x), string_list)) print(int_list)
Result:
Report an issue