← Lesson
Modules
Joeven
Run
Reset
Python loads on first run
import math import json import datetime print(math.ceil(2.1)) print(math.sqrt(9)) print(json.dumps({"goal": "done"})) print(datetime.date(2026, 9, 21)) print("this file name flag:", __name__) print("is this the program?", __name__ == "__main__") if __name__ == "__main__": print("this ran because this file is the program") layout = { "loop.py": "the agent while-loop", "tools.py": "search, read, and other tools", "prompts.py": "the text you send the model", } for path, role in layout.items(): print(path, "-", role)
Run to execute this in your browser. Nothing is sent to a server.