π©ββοΈ
Commander Eve
Mission Briefing
Mission
Welcome, Agent! Your first mission is simple but critical: define three variables to boot the system. Set system_status to "ONLINE" (string), cpu_cores to 8 (integer), and is_active to True (boolean). Then print them all. This is how every system starts β with data stored in memory.
Objectives
- Set system_status to "ONLINE"
- Set cpu_cores to 8
- Set is_active to True
- Print all three variables
main.py
Files
main.py
main.py
Test Results
test_status
system_status is ONLINE
test_cores
cpu_cores is 8
test_active
is_active is True