+ 1
I need to print a list which have compination of "a to e " and "1 to 3" ? Output will be (a,1,b,2,c,3,d,e)! (Python preffered)
Begginners program.
2 Respostas
+ 4
I did not understand bit I think you have two arrays the first contains a to e and the second contains 1 to 3
Then you will have a loop to print an element from the first then one from the second
After that you will print the least of second array
Sorry I just tried to help
0
Output: a 1 b 2 c 3 d e
This must be the output.
Comment Logic or program please.