strftime的python日期后缀

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了strftime的python日期后缀相关的知识,希望对你有一定的参考价值。

like PHP's 'jS'
  1. if 4 <= day <= 20 or 24 <= day <= 30:
  2. suffix = "th"
  3. else:
  4. suffix = ["st", "nd", "rd"][day % 10 - 1]

以上是关于strftime的python日期后缀的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法在 Python 中对 1900 年之前的日期使用类似 strftime 的函数?

如何在不同的语言环境中对日期对象进行 strftime? [复制]

python时间处理,datetime中的strftime/strptime

Python中datetime模块中strftime/strptime函数

(python基础)时间辍time时间元组localtime时间格式化strftime

python中datetime模块中的strftime与strptime