Programming with Python
Kühne Logistics University Hamburg - Fall 2026
The first 40 minutes are the checkpoint. It starts now, before the investor opens her data room.
random and seeds, NumPy arrays and masksWhen you’re done: menu → Download → Download Python code → upload the .py to the “Checkpoint 4” assignment on Moodle. No retakes: one sitting.
The green ✅ live checks are provisional. The final grading runs on our side. And take a breath: everything in it was rehearsed in the labs.
Pens down. The checkpoint is behind you. This morning the rival chain MunchCorp put out a press release bragging about their “data-driven growth.” The evidence attached: exactly one pie chart. The investor slid it across the table and said, “Yours will be better. Show me the data.”
Kevin didn’t wait. He’d pasted the question into a chatbot, proudly turned the laptop around, and hit run:
AttributeError: 'DataFrame' object has no attribute 'overview'
The AI sounded certain. The method it called does not exist. Today is about that difference, and about the tool that answers the investor for real: pandas.
An AI is only as good as what you tell it. Two things turn a vague request into a useful answer:
orders with columns zone (text) and total_eur (float).”total_eur for zone Nord, as a single number.”“I have a pandas DataFrame
orderswith a text columnzoneand a float columntotal_eur. Write one line that returns the totaltotal_eurfor rows wherezoneisNord.”
Vague in, vague out. Specific in, checkable out, and then you iterate.
Kevin’s mistake wasn’t using AI. It was shipping without checking. Every line an AI hands you gets three passes:
Step 3 in action. Five orders with values you can add in your head, and the AI’s suggested line for the Nord average:
20.0
The Nord orders are 10, 20 and 30. You can average those in your head. Does the AI’s answer match? Then the line has earned some trust on eight hundred rows. Verification is the job now, not typing.
.summarize() exist?The AI wrote this for Kevin. orders is a tiny two-row frame. What happens on the last line?
a) prints a summary table b) raises an AttributeError c) returns an empty DataFrame
Predict first. Commit to an answer before the next slide.
b) AttributeError — pandas has no .summarize(). The AI invented a plausible-sounding name, and Python answers with a traceback you’ve read since Episode 5:
--------------------------------------------------------------------------- AttributeError Traceback (most recent call last) /var/folders/_5/jkkjxxdd5f1955l380dky7n80000gn/T/ipykernel_66286/1876211805.py in ?() 1 import pandas as pd 2 orders = pd.DataFrame({"zone": ["Nord", "Sued"], "total_eur": [12.0, 9.5]}) 3 ----> 4 orders.summarize() # the method the AI invented ~/development/lectures/Introduction-to-Python/.venv/lib/python3.12/site-packages/pandas/core/generic.py in ?(self, name) 6314 and name not in self._accessors 6315 and self._info_axis._can_hold_identifiers_and_holds_name(name) 6316 ): 6317 return self[name] -> 6318 return object.__getattribute__(self, name) AttributeError: 'DataFrame' object has no attribute 'summarize'
The real method is .describe():
total_eur
count 2.000000
mean 10.750000
std 1.767767
min 9.500000
25% 10.125000
50% 10.750000
75% 11.375000
max 12.000000
An AI that sounds sure is not the same as an API that exists.
From Session VI the course rule stands: every submission that used AI carries a one-line note saying what you used it for.
groupby line; I checked the totals by hand.”It protects you: it separates the work you understand from the work you pasted, so when a reviewer (or the investor) asks “how does this line work?”, you’re never caught claiming something you can’t explain.
Sometimes the fastest path is the one you already own. You built a whole muscle in Part I:
Use AI to draft the unfamiliar and to explain the confusing, not to dodge the thinking you’re perfectly able to do. The pilot flies; the co-pilot advises.
Open the exercise (scan the QR or type the link):
beyondsimulations.github.io/Introduction-to-Python/notebooks/ex_08_a/
First predict what happens, then run it.
Last session, a NumPy array turned a thousand numbers into one fast object, but every value had to share one type, and columns had no names.
The convention everyone uses: import pandas as pd.
Keys become column names; each list becomes a column. One order per row:
order_id zone items total_eur
0 101 Nord 2 18.5
1 102 Sued 1 7.2
2 103 Nord 3 24.0
3 104 Hafen 1 6.8
4 105 Sued 4 31.4
Five orders, four columns, mixed types (text, integers, floats) living happily together.
You won’t type the investor’s eighty orders by hand. In tonight’s lab a real CSV loads in one line, orders = pd.read_csv("public/orders.csv"). In the browser notebook that same line fetches the file over the web instead of from disk; pandas doesn’t care, your code doesn’t change.
.head() and .info()Before analyzing a table, glance at it. .head() shows the top rows; .info() reports columns, types, and counts:
order_id zone items total_eur
0 101 Nord 2 18.5
1 102 Sued 1 7.2
2 103 Nord 3 24.0
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 5 entries, 0 to 4
Data columns (total 4 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 order_id 5 non-null int64
1 zone 5 non-null object
2 items 5 non-null int64
3 total_eur 5 non-null float64
dtypes: float64(1), int64(2), object(1)
memory usage: 292.0+ bytes
.info() is your first sanity check: right number of rows? Any column a surprising type?
.describe().describe() computes count, mean, min, max and quartiles for every numeric column at once:
order_id items total_eur
count 5.000000 5.00000 5.000000
mean 103.000000 2.20000 17.580000
std 1.581139 1.30384 10.688873
min 101.000000 1.00000 6.800000
25% 102.000000 1.00000 7.200000
50% 103.000000 2.00000 18.500000
75% 104.000000 3.00000 24.000000
max 105.000000 4.00000 31.400000
One call, the whole numeric summary: this is the .summarize() the AI wished existed, spelled correctly.
Pick one column by name; keep rows with a boolean mask, exactly the NumPy idea from last session:
0 Nord
1 Sued
2 Nord
3 Hafen
4 Sued
Name: zone, dtype: object
order_id zone items total_eur
0 101 Nord 2 18.5
2 103 Nord 3 24.0
df["zone"] == "Nord" builds a column of True/False; indexing with it keeps the True rows. .loc exists for label-based selection, but a plain mask covers today.
Compute a new column from existing ones, then sort. Work on a copy so the original stays intact:
order_id zone items total_eur eur_per_item
4 105 Sued 4 31.4 7.85
2 103 Nord 3 24.0 8.00
0 101 Nord 2 18.5 9.25
1 102 Sued 1 7.2 7.20
3 104 Hafen 1 6.8 6.80
sort_values reorders rows by a column, biggest orders first here. The new column is just arithmetic on two others, computed for every row at once.
Kevin filters for the Nord zone, but types it lowercase. The data spells it "Nord". What does this print?
a) an empty table, no error b) the Nord rows anyway: case is ignored c) a KeyError for the missing zone
Predict first. Commit to an answer before the next slide.
a) an empty table — "nord" matches nothing, so the mask is all False and pandas hands back zero rows. No error, no complaint:
Empty DataFrame
Columns: [order_id, zone, items, total_eur]
Index: []
rows: 0
This is the dangerous kind of bug: it runs, it just returns nothing. pandas won’t warn you; YOU verify, which is exactly why you test filters on a case whose answer you know.
groupbyThe investor’s real question isn’t about one row. It’s per zone: which area brings in the most?
groupby splits the table by a category, then computes once per groupdf.groupby("zone")["total_eur"].sum() → one total for each zoneThat’s the teaser: tonight’s lab does the heavy lifting with groupby, turning eighty raw orders into the handful of numbers the investor actually asked for.
Open the exercise (scan the QR or type the link):
beyondsimulations.github.io/Introduction-to-Python/notebooks/ex_08_b/
First predict what happens, then run it.
orders.csv, eighty rows, loaded with one pd.read_csv line.head(), .info() and .describe() it, filter with masks, add a column on a safe copy, and answer per-zone questions with groupbyDownload your .py before you leave. Closing the tab without downloading loses your work, the same motion you used to hand in the checkpoint this morning.
pd.DataFrame from a dict, pd.read_csv from a file; .head(), .info(), .describe() to look before you leap.df["col"], a boolean mask (df[df["zone"] == "Nord"], case-sensitive!), a new column on a .copy(), and groupby for per-category answers. pandas won’t warn you; you verify.Next episode: charts the investor can’t argue with. Numbers convince the careful; a good plot convinces the room. We turn the data room into pictures.
Working with AI this session? Revisit the AI Tools page: context-and-constraints prompting, the verify workflow, and the one-line disclosure habit. For pandas itself, the official 10 minutes to pandas guide is the friendliest next step.
For more, see the literature list of this course.
Lecture VIII - Pandas and AI Craft | Dr. Tobias Vlćek | Home