Task
If a script calls
count = 0
def tick():
global count
count += 1
print("tick", count)
and registers schedule.every(2).seconds.do(tick), then runs schedule.run_pending() three times (each 2 seconds apart), what do the three printed lines look like? Type all three lines.