15 Mar
2021
15 Mar
'21
5:42 p.m.
On 3/15/21 9:57 AM, Seth Seeger wrote:
My wife fixed it! f-strings don't show up until Python 3.6. She rewrote the two print statements as:
print(' ' + lname + ': ' + str(tot))
I would have written
print(' {}: {}'.format(lname, tot))
but what she did is OK too.
-- Mark Sapiro <mark@msapiro.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan