I am trying to form a string using format() but can't figure this out.
lems = ['scaena', 'persona', 'improbus']
for i in lems:
print('{}{}{}'.format(i, '\t', 'whatever'))
but the tab is not strung as I expect it. Actually, the last item in the list the tab does apply as it prints out:
scaena text
persona text
improbus text
What is going on? thanks.