I made a small program where a user enters a name and a present they would give to someone. This data is then saved in the format ["name","present"]
and then a new line for new inputs in a text file.
When I print it, it appears like this.
["bob","car"]
["charlie","mansion"]
Which is to be expected. I want to print it in columns so it prints like this.
bob car
charlie mansion
I know how to remove [],'
so it displays properly but don't know how to print in columns.
I did research and found methods like zip
but they print the text like this.
bob charlie
car mansion
Which isn't the order I want it in.