• 大小: 1KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-05-12
  • 语言: Python
  • 标签: python  日期转换  

资源简介

实现将年月日数据转为天数,并区别闰年,并保存为csv输出

资源截图

代码片段和文件信息

# -*- coding: utf-8 -*-
“““
Created on Thu Jun  6 16:59:15 2019

@author: Administrator
“““
import os
import pandas as pd
import numpy as np
#result =pd.Dataframe(np.array([1]).reshape(11)columns=(‘id‘))
def leap_year(year):
    return  (year//4==0 and year//100!=0) or (year //400==0)
def which_day(yearmonthday):
    total=0
    days_of_month=[312831303130313130313031]
    for index in range (month-1):
            total += days_of_month[index]
    if month >2 and leap_year(year):
        total += 1
    return total + day
if __name__ == ‘__main__‘:
    path=r‘C:\Users\Administrator\De

评论

共有 条评论