获取当前时间并写入文件中

获取当前时间

import time
nowtime=str(time.ctime())
print(nowtime)
nowtime.to_csv('cityresult.csv')


你可能感兴趣的:(pyhon,date,pandas)