I would like to loop as something like:
for j in range(1,4) and for k in ['one', 'two', 'three']:
print(str(j) + ' is written ' + k)
I tried with and but it didn't work. How does someone get this effect?
And what would happen in the case that the two lists have different lengths? How could I still iterate through both of them?