Contact: aviboots(AT)netvision.net.il
39,961 questions
51,903 answers
573 users
lst = ["python", "java", "c#", "c++", "php"] i = 0 while i < len(lst): print(lst[i][0]) i += 1 ''' run: p j c c p '''
lst = ["python", "java", "c#", "c++", "php"] for i in range(len(lst)): print(lst[i][0]) ''' run: p j c c p '''