Initial src-file which requires some data
This commit is contained in:
parent
4499603263
commit
648afdb89b
18
src/T02_PandasIntro.py
Normal file
18
src/T02_PandasIntro.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
import pandas as pd
|
||||||
|
|
||||||
|
cities = {"Stadt": ["London", "Berlin", "Madrid", "Rom",
|
||||||
|
"Paris", "Wien", "Bukarest", "Hamburg",
|
||||||
|
"Budapest", "Warsaw", "Barcelona",
|
||||||
|
"München", "Mailand"],
|
||||||
|
"Population": [8615246, 3562166, 3165235, 2874038,
|
||||||
|
2273305, 1805681, 1803425, 1760433,
|
||||||
|
1754000, 1740119, 1602386, 1493900,
|
||||||
|
1350680],
|
||||||
|
"Land": ["England", "Deutschland", "Spanien", "Italien",
|
||||||
|
"Frankreich", "Österreich", "Romanien",
|
||||||
|
"Deutschland", "Ungarn", "Polen", "Spanien",
|
||||||
|
"Deutschland", "Italien"]}
|
||||||
|
|
||||||
|
|
||||||
|
areas = [1572, 892, 604, 1285, 105,415, 228, 755, 525, 517, 101, 310, 182]
|
||||||
|
|
||||||
Loading…
Reference in New Issue
Block a user