I would like to process nested loop. Here is what I did.
num_list = [1, 2]
alpha_list = ['a', 'b']
for number in num_list:
print(number)
for letter in alpha_list:
print(letter)
This is will output:
1
a
b
2
a
b
But my expectation output is like this:
1
a
2
b
or
1a
2b
Anyone can give idea please. Thank you