“Comment écrire une date avec th and nd in python” Réponses codées

Comment écrire une date avec th and nd in python

from datetime import datetime as dt

def suffix(d):
    return 'th' if 11<=d<=13 else {1:'st',2:'nd',3:'rd'}.get(d%10, 'th')

def custom_strftime(format, t):
    return t.strftime(format).replace('{S}', str(t.day) + suffix(t.day))

print custom_strftime('%B {S}, %Y', dt.now())
Crowded Caribou

Comment écrire une date avec th and nd in python

from datetime import datetime as dt

def suffix(d):
    return 'th' if 11<=d<=13 else {1:'st',2:'nd',3:'rd'}.get(d%10, 'th')

def custom_strftime(format, t):
    return t.strftime(format).replace('{S}', str(t.day) + suffix(t.day))

print custom_strftime('%B {S}, %Y', dt.now())
Crowded Caribou

Réponses similaires à “Comment écrire une date avec th and nd in python”

Questions similaires à “Comment écrire une date avec th and nd in python”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code