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