tfi = '''
aardvark
albatross
alligator
alpaca
ant
anteater
antelope
'''
print(tfi)
Ok so, this is just a small section of the tfi string, but how do I make the code print this out in sections decided by amount of characters.
pseudo:
print tfi (3 chars):
returns:
'aar'
'dva'
and so on...