# To print a list of string vertically my_list = ["A","B","C"] print('\n'.join(my_list)) # Result: # A # B # C