If i have a string like:
"user1:type1,user2:type2,user3:type3"
and I want to convert this to a list of tuples like so:
[('user1','type1'),('user2','type2'),('user3','type3')]
how would i go about doing this? I'm fairly new to python but couldn't find a good example in the documentation to do this.
Thanks!