I have a list which is made by the following code:
[ self.directory + "/" + file for file in os.listdir(self.directory) ]
When i print this list out it appears on one line separated by commas.
How do I split this list so that when printed each listed item appears on its own line?
Thanks in advance