Python CSV String ke Array

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