如何从此字符串中提取当前月份?
How to extract the current month from this string?
在下面给定的代码中,我想获取当前月份(如果我今天 运行 是 10 月),而不是 monthpage
中的 "current_month"
,即 "file/monthly/current_month"
。
如何做到?
def CurrentMonth(self):
monthpage = "file/monthly/current_month"
page = Page
old_text = page.get(get_redirect=True)
简单。使用日期时间库 !!
import datetime
mydate = datetime.datetime.now()
mydate.strftime("%B")
from datetime import datetime
now = datetime.now()
monthpage.replace('current_month',now.strftime("%B"))
它将 monthpage
变量中的 "current_month"
字符串替换为实际的当前月份名称
最简单的方法:
import datetime
current_month = datetime.now().month()
在下面给定的代码中,我想获取当前月份(如果我今天 运行 是 10 月),而不是 monthpage
中的 "current_month"
,即 "file/monthly/current_month"
。
如何做到?
def CurrentMonth(self):
monthpage = "file/monthly/current_month"
page = Page
old_text = page.get(get_redirect=True)
简单。使用日期时间库 !!
import datetime
mydate = datetime.datetime.now()
mydate.strftime("%B")
from datetime import datetime
now = datetime.now()
monthpage.replace('current_month',now.strftime("%B"))
它将 monthpage
变量中的 "current_month"
字符串替换为实际的当前月份名称
最简单的方法:
import datetime
current_month = datetime.now().month()