Python CSV -String zum Array

a = "1,2"
b = a.split(",")
Friendly Hawk