Contact: aviboots(AT)netvision.net.il
41,230 questions
53,732 answers
573 users
lst = ["python", "c", "c++", "java", "php"] i = 0 while i < len(lst): item = lst[i] i += 1 if item == "c++": continue print(item) ''' run: python c java php '''