as I do not have much knowledge about Python I would like to ask how can I save multiple input files to one single Excel file in different columns? I have a python script which takes as input a single log file:
file = 'output_1.log'
and outputs in an Excel file some results of this log file in a single column like this:
data = open(file, 'r')
How can I change these commands in order to read multiple text files (*.log) and print the results in a single Excel file in different columns for each input file?
Thank you...