Trace Tables

Learn to create trace tables by stepping through Python algorithms

Select Algorithm
Choose an algorithm to trace
Basic Sequence
Simple sequential execution of statements
1name = "Alice"
2age = 25
3print("Hello", name)
4age = age + 1
5print("Next year you will be", age)
Step 1 of 5: Assign string "Alice" to variable name
Trace Table
Variable values shown only when they change
LinenameageOutput
1"Alice"