Contact: aviboots(AT)netvision.net.il
40,836 questions
53,240 answers
573 users
lst = ["python", "java", "c++", "c", "c#", "javascript"] index = lst.index('c') lst = lst[index:] print(lst) ''' run: ['c', 'c#', 'javascript'] '''