I have now two lists
a = ['Redemption', 'The', 'II', 'Dark']
b = [912, 813, 230, 567]
I would like to have a result of,
c =
Redemption 912
The 813
II 230
Dark 567
The code below is what I have tried but the output is incorrect:
aa = [a[i] for i in range(10)]
bb = [str(b[j]) for j in range(10)]
for i in aa:
for j in bb:
c = i + ' ' + j
print(c)
Result is
Redemption 567
The 567
II 567
Dark 567