I was up early to bake bread and just followed that with the walk. Talked some about the Cat, not traveling (remembering some of the trips I wish I’d never taken), and hinted at the traps new writers fall into.
Podcast: Play in new window | Download
I was up early to bake bread and just followed that with the walk. Talked some about the Cat, not traveling (remembering some of the trips I wish I’d never taken), and hinted at the traps new writers fall into.
Podcast: Play in new window | Download
I think this is your walk algorithm?
from datetime import date
today = date.today()
day = today.day
remainder = day % 3
if remainder == 0:
print(“Don’t walk”)
elif remainder == 1:
print(“1 Day”)
else: # remainder == 2
print(“2 Day”)
pretty much.