Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/geekcomputers/Python
/ show_tasks
Function
show_tasks
TaskPlanner.py:27–32 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
25
26
27
def
show_tasks():
28
tasks = load_tasks()
29
for
task in tasks:
30
print(
31
f
"Task: {task['task']}, Deadline: {task['deadline']}, Completed: {task['completed']}"
32
)
33
34
35
# Example usage
Callers
1
TaskPlanner.py
File · 0.70
Calls
1
load_tasks
Function · 0.70
Tested by
no test coverage detected