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 might also help you.
for i in skills_defs: if skills_defs.index(i)%2 ==0: print(i.ljust(30),end = " ") else: print(i.ljust(30))