Write Python code, hit Run, then step through it line by line. Watch variables change and output appear in real time. Like PythonTutor — right in your browser.
1a = [1, 2, 3]2b = a3b.append(4)4print("a =", a)5print("b =", b)6print("a is b:", a is b)78x = 109y = 1010print("x is y:", x is y)1112name = "Python"13upper = name.upper()14print(upper)
Click Run to start
Output appears here