当前位置:
首页 > temp > python入门教程 >
-
python输入年月日,得出已经过了多少天?
# -*- coding: UTF-8 -*- import time def What_day_of_the_year(inputTime): #函数,判断字符串是否为数字 def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata unicodedata.numeric(s) return True except (TypeError, ValueError): pass return False #判断字符串是否含有“-”分割符(是否按格式输入) if inputTime.find('-') != -1: #if '' in inputTime != 'False' or ' ' in inputTime != 'False': #想判断是否含空格(含空格不符合格式),效果不佳,已废弃;改用Python异常处理 timeList = inputTime.split('-') #以“-”符分割字符串,赋值为列表 #通过for循环+自定义的is_number函数判断列表是否含有字母(含有字母不符合格式) trueList = [] for numberValue in timeList: trueList.append(is_number(numberValue)) if trueList.count('False') == 0: timeList = list(map(int, timeList)) #将列表从字符串转换为int整数 if timeList[0] % 4 == 0 or timeList[0] % 400 == 0: #判断是否为闰年。 timeTotal = (7 * 31) + (4 * 30) + 29 exceptSameMonthDay = 0 for monthValue in range(1,timeList[1]): #计算除当月在内的,已过天数;如:2009-11-14,不算第11月。仅算1~10月 if monthValue == 1 or monthValue == 3 or monthValue == 5 or monthValue == 7 or monthValue == 8 or monthValue == 10 or monthValue == 12: exceptSameMonthDay += 31 elif monthValue == 4 or monthValue == 6 or monthValue == 9 or monthValue == 11: exceptSameMonthDay += 30 elif monthValue == 2: exceptSameMonthDay += 29 return exceptSameMonthDay + timeList[2] else: timeTotal = (7 * 31) + (4 * 30) + 28 exceptSameMonthDay = 0 for monthValue in range(1,timeList[1]): if monthValue == 1 or monthValue == 3 or monthValue == 5 or monthValue == 7 or monthValue == 8 or monthValue == 10 or monthValue == 12: exceptSameMonthDay += 31 elif monthValue == 4 or monthValue == 6 or monthValue == 9 or monthValue == 11: exceptSameMonthDay += 30 elif monthValue == 2: exceptSameMonthDay += 28 return exceptSameMonthDay + timeList[2] else: return 1 #else: #return 1 else: return 1 timeValue = time.strftime("%Y-%m-%d", time.localtime()) #获取当前日期,并格式化 # 格式化成2020-02-26形式 tipsValue = '请输入日期,如:' + timeValue + ':' inputTime = input(tipsValue) try: inputTime = What_day_of_the_year(inputTime) if inputTime == 1: print('您的输入有误!') else: print(inputTime) except : print('您的输入有误!') 如把 return exceptSameMonthDay + timeList[2] 改为 return timeTotal - (exceptSameMonthDay + timeList[2]) 还可以计算剩余天数。 出 处:https://www.cnblogs.com/Deng-Xian-Sheng/p/14452878.html
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数