5 4 7 categories python

Solutions on MaxInterview for 5 4 7 categories python by the best coders in the world

showing results for - "5 4 7 categories python"
Giacomo
16 Sep 2020
1123456789101112131415List=[['animals','cheetah','pelican','red panda'],['noises','vrooom!','whirrr!','woosh!'['programming languages','Python','Java','C++']]i=0k=0for i in range(0,2):   print("Category:"+List[i][0])   for k in range(1,3):       print("\t"+List[i][k])XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX