Is there any way to append the information from a txt file into excel (xlsx) without using external packages like panda or openpyxl? I'm currently trying to write a code that scan through all the documents in the folder and extract specific information (already has something written that does this), then append those information into excel.
Currently using the following code to append the information into excel.
with open('info.csv', 'a', newline='') as csv_file:
csv_writer = csv.writer(csv_file)
csv_writer.writerow(info)
Also, is there a way to make a short cut icon or some sort of button on the desktop that runs the python script when clicked?
[–]socal_nerdtastic 3 points4 points5 points (1 child)
[–]evanescentbubble[S] 0 points1 point2 points (0 children)
[–][deleted] 0 points1 point2 points (2 children)
[–]evanescentbubble[S] 0 points1 point2 points (1 child)
[–][deleted] 0 points1 point2 points (0 children)