prendre plusieurs chaînes comme int dans une liste python

st = "1,2,3,4,5"
num_lst = list(map(int, st.split(",")))
motinxy