Two different computers (same python version) return different formatting for time.ctime()
. One returns
"Sun May 6 14:04:28 2018"
with 2 spaces before the day of month; the other returns
"Sun May 06 14:04:28 2018"
with a space and a zero. I feel like it's dictated either by OS or by C lib. Does anyone know what this depends upon?
P.S.: I know how to fix it in the code, I'm looking for a root cause of such behavior.