I have a csv file and need to convert to html format. I know python pandas can do it with DataFormat.to_html()
, but could not figure out what value to put in the (). I have:
pd.DataFrame.to_html(class=myfile.csv)
but got issue with it. Anyone has idea?
You need to put there dataframe:
df = pd.read_csv("myfile.csv")
df.to_html('your_file.html')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With