Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 answers
573 users
s = "python:java:c#:php:c++" lst = s.split(":") print(lst[0]) print(lst[2]) print("---") for item in lst: print(item) ''' run: python c# --- python java c# php c++ '''