Token economics: cache it or pay 10×
Anatomy of a message
System prompts that control behavior
Prerequisites — what you should know before this track
Why pandas?
Read the code carefully
iterations = 0 done = False while not done and iterations < 5: iterations += 1 if iterations == 3: done = True print(iterations)
What will the program print? Write here: