// resources

Resources

// Exercise
squad_utils.py
The shared module. Three functions — format_name, is_active, squad_summary. Written once, imported by everything else.
[ download ]
// Exercise
briefing.py
Imports format_name and is_active from squad_utils. Prints a clean roster with status for each member.
[ download ]
// Exercise
report.py
Imports squad_summary from squad_utils. Prints total, active, and inactive count in three lines.
[ download ]