Weź wiele ciągów jako int na liście Python
st = "1,2,3,4,5"
num_lst = list(map(int, st.split(",")))
motinxy
st = "1,2,3,4,5"
num_lst = list(map(int, st.split(",")))