我是编程的新手,我正用pythin刺穿python读取CSV文件。我正在使用Spyder进行此操作。我收到错误消息“模块'datetime'没有属性'strptime'”,并且无法弄清楚。任何帮助将不胜感激。这是我的代码:
import os
import csv
from datetime import datetime
path=csvpath=os.path.join("..","Practice","Google Stock Market Data -
google_stock_data.csv")
file=open(path,newline="")
reader=csv.reader(file)
header=next(reader)
data=[]
对于阅读器中的行:
date=datetime.strptime(row[0], '%m/%d/%y')
这是我收到的错误消息。
date=datetime.strptime(row[0], '%m/%d/%y')
AttributeError: module 'datetime' has no attribute 'strptime'
答案 0 :(得分:0)
date = datetime.datetime.strptime(row[0], '%m/%d/%y')