Leading 0's syntax error in datetime.date module (Python 3.6)

D'Arcy Cain darcy at VybeNetworks.com
Thu May 10 07:52:43 EDT 2018


On 2018-05-10 07:39 AM, AK wrote:
> Try (should work from both PY2 and PY3):
> 
> d0 = date(2018,0o2,0o1)

Bad advice.  Those numbers are decimal, not octal,  You should use
"date(2018,2,1)" here.  Works in PY2, PY3 and for my birthday, Sept 4.

-- 
D'Arcy J.M. Cain
Vybe Networks Inc.
http://www.VybeNetworks.com/
IM:darcy at Vex.Net VoIP: sip:darcy at VybeNetworks.com



More information about the Python-list mailing list