Contact: aviboots(AT)netvision.net.il
39,870 questions
51,793 answers
573 users
tpls = (("python", "c", 847.938), ("c++", "c#", 2020.72), ("java", "go", 489287)) for t in tpls: print(t[0] + " " + t[1] + " ", t[2]) ''' run: python c 847.938 c++ c# 2020.72 java go 489287 '''
tpls = (1, ("python", "c"), 8, ("c++", "c#"), 17, ("java", "go")) for t in tpls: print(t) ''' run: 1 ('python', 'c') 8 ('c++', 'c#') 17 ('java', 'go') '''