Skip to content

Commit

Permalink
test2
Browse files Browse the repository at this point in the history
  • Loading branch information
pkiczko committed May 31, 2020
1 parent c380bec commit c6fd597
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion 25_Day/25_pandas.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,36 @@ print(df)
</table>
</div>
```

<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>Names</th>
<th>Country</th>
<th>City</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td>Asabeneh</td>
<td>Finland</td>
<td>Helsink</td>
</tr>
<tr>
<td>1</td>
<td>David</td>
<td>UK</td>
<td>London</td>
</tr>
<tr>
<td>2</td>
<td>John</td>
<td>Sweden</td>
<td>Stockholm</td>
</tr>
</tbody>
</table>

### Creating DataFrame Using Dictionary

Expand Down

0 comments on commit c6fd597

Please sign in to comment.