Contact: aviboots(AT)netvision.net.il
39,911 questions
51,843 answers
573 users
lst = ["python", "c#", "c++", "java"] for i, item in enumerate(lst): print(i, item) ''' run: 0 python 1 c# 2 c++ 3 java '''