我正在尝试获取字符串格式(Month-Date-Year)
的当前数据def user_defined_function(date_str):
我有一个用户定义的函数,它以上面提到的格式接收输入日期(refresh_date
)。所以我需要将今天的日期更改为所需的格式并Map它。
我尝试的内容:
import datetime as dt
from datetime import date
refresh_date=date.today().strftime('%m-%d-%Y')
x=refresh_date.map(user_defined_function).values[0]
但是,使用上面的代码AttributeError: 'str' object has no attribute 'map'
时出现错误
1条答案
按热度按时间9rygscc11#
使用
refresh_date
变量创建一个系列: