← Lesson
Variables and Names
Joeven
Run
Reset
Python loads on first run
goal = "find the weather" step = 0 budget = 5 step = step + 1 budget = budget - 1 print("goal:", goal) print("step:", step) print("budget:", budget) agent_name = "atlas" label = agent_name print("label:", label) DEFAULT_BUDGET = 16 print("default budget:", DEFAULT_BUDGET)
Run to execute this in your browser. Nothing is sent to a server.