python read html table

Solutions on MaxInterview for python read html table by the best coders in the world

showing results for - "python read html table"
Francesco
31 Jan 2019
1html_string = """
2<table>
3  <thead>
4    <tr>
5      <th>Programming Language</th>
6      <th>Creator</th> 
7      <th>Year</th>
8    </tr>
9  </thead>
10  <tbody>
11    <tr>
12      <td>C</td>
13      <td>Dennis Ritchie</td> 
14      <td>1972</td>
15    </tr>
16    <tr>
17      <td>Python</td>
18      <td>Guido Van Rossum</td> 
19      <td>1989</td>
20    </tr>
21    <tr>
22      <td>Ruby</td>
23      <td>Yukihiro Matsumoto</td> 
24      <td>1995</td>
25    </tr>
26  </tbody>
27</table>
28"""
29