When using Python strftime, is there a way to remove the first 0 of the date if it's before the 10th ie. so 01 is 1? Can't find a %thingy for that?
Thanks!
|
1
|
When using Python strftime, is there a way to remove the first 0 of the date if it's before the 10th ie. so 01 is 1? Can't find a %thingy for that? Thanks!
|
||
|
|
|
|
You can use left strip to remove the leading zero's
|
||
|
|
|
Some platforms may support width and precision specification between
|
||
|
|
|
|
Because Python really just calls the C language strftime(3) function on your platform, it might be that there are format characters you could use to control the leading zero; try "man strftime" and take a look. But, of course, the result will not be portable, as the Python manual will remind you. :-) I would try using a new-style "datetime" object instead, which has attributes like "t.year" and "t.month" and "t.day", and put those through the normal, high-powered formatting of the "%" operator, which does support control of leading zeros. See http://docs.python.org/library/datetime.html for details. Better yet, use the "".format() operator if your Python has it and be even more modern; it has lots of format options for numbers as well. See: http://docs.python.org/library/string.html#string-formatting |
||
|
|
|
|
Here is the documentation of the modifiers supported by
It works on my Python (on Linux). I don't know if it will work on yours. |
||
|
|
|
|
I find the Django template date formatting filter to be quick and easy. It strips out leading zeros. If you don't mind importing the Django module, check it out. http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date
|
||
|
|