我有这个号码201701,所以任何想法都可以让我搜索最后2位数?如果最后2位数为01则将替换为1月,如果最后2位数字为02则将替换为2月。
例如:
201701 --> 2017January
201702 --> 2017February
答案 0 :(得分:2)
import datetime as dt
#user strptime and strftime functions to convert the dates.
dt.datetime.strptime(str(201701),'%Y%m').strftime('%Y%B')
Out[188]: '2017January'