I\'m trying to output a list of string values into a 2 column format. The standard way of making a list of strings into \"normal text\" is by using the string.join
This works
it = iter(skills_defs) for i in it: print('{:<60}{}'.format(i, next(it, "")))
See: String format examples