Contact: aviboots(AT)netvision.net.il
39,851 questions
51,772 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 '''