Old code reads HTML and output it to CSV
I have an old python 3 code:
self.df, = pandas.read_html(my_html_file)
self.df.to_csv(my_csv_file, index=False)
without comma in first line pandas returns a list, with the comma DF object that can be send to CSV file in second line. I do not understand that comma in the first line