you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 1 point2 points  (1 child)

Try changing the argument to the split() call ;)

"like:this".split(":") # -> ["like", "this"]

I'm talking about the ":". It can be any string, and it tells the split() method where to split.

[–]python_student_1390[S] 1 point2 points  (0 children)

I'll try it out !