← Lesson
Welcome to Joeven
Joeven
Run
Reset
Python loads on first run
# Joeven is a list of tracks. An agent is a list of steps. # Same shape: observe the next item, act, stop when the list ends. tracks = [ "start", "python", "math", "ml", "transformers", "llm", "prompt", "tools", "rag", "agents", "multiagent", "eval", "prod", "projects", ] print("tracks on this academy:", len(tracks)) i = 0 while i < len(tracks): name = tracks[i] print("observe:", name) print("act: open that track when you reach it") i = i + 1 print("stop: map is complete") print("next action: stay on Getting Started")
Run to execute this in your browser. Nothing is sent to a server.