自己的第一个网页
一、文件打开方式
二、任务:
import pandas as pd df = pd.read_excel('python成绩登记信计.xlsx') df1=df[:] df1['一']=df1['一'].map({'优秀':90,'良好':80,'合格':60,'不合格':50}) df1['二']=df1['二'].map({'优秀':90,'良好':80,'合格':60,'不合格':50}) df1['三']=df1['三'].map({'优秀':90,'良好':80,'合格':60,'不合格':50}) df1['四']=df1['四'].map({'优秀':90,'良好':80,'合格':60,'不合格':50}) df1=df1.fillna(0) df1.to_csv('成绩登记1.csv') df1.to_html('成绩登记2.html')
三、html表格
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>菜鸟教程(runoob.com)</title> 6 </head> 7 <body> 8 9 <h1>我的第一个标题</h1> 10 <p id="first">我的第一个段落。</p> 11 12 </body> 13 <table border="1"> 14 <tr> 15 <td>row 1, cell 1</td> 16 <td>row 2, cell 2</td> 17 </tr> 18 </table> 19 </html>