bozhen
发表于 2017-8-12 17:31:26
str1 = input('请输入某年某月某日(格式为YYYY-MM-DD):')
YY = str1
MM = str1
DD = str1
day_list = # 每个月的天数,从1月份开始
day_list = day_list[:int(MM)-1]
days = sum(day_list) + int(DD)
if (int(YY)% 4 == 0 and int(YY) % 100 != 0)or (int(YY) % 400 == 0): # 判断闰年
if int(MM) > 2 :
days +=1
print('这一天是这一年的第%d天' % days)
小山90
发表于 2017-8-18 09:58:56
import time
print("-----------输入年月日,判断这天是这一年的第几天------------")
date = input("请输入日期,格式为YYYY-MM-DD:")
temp = time.strptime(date,"%Y-%m-%d")
year,month,day = temp
DaysPerMonth =
daysnumber = 0
for i in range(0,month):
daysnumber += DaysPerMonth
if year%400 ==0:
daysnumber = daysnumber + 1
else:
if year%100 != 0 and year%4 == 0:
daysnumber = daysnumber + 1
print("这是 %d 年的第 %d 天" %(year,daysnumber))
木一
发表于 2017-8-20 17:23:50
year = int(input('请输入年份:'))
month = int(input('请输入月份:'))
day = int(input('请输入日期:'))
days =
n = 0
for i in range(month - 1):
n += days
if ((year % 4 == 0 and year % 100 != 0) or year % 400 == 0) and month > 2:
n = n + day + 1
else:
n += day
print('这一天是%s年的第%s天。' % (year,n)){:10_243:}
morxrc
发表于 2017-8-22 23:50:02
print ('_____判断一年的第几天______')
year=int(input('请输入年份'))
month=int(input('请输入月份'))
day=int(input('请输入日'))
months1=
months2=
result =0
if year%4==0:
temp = month-1
result=months2+day
print('这是这个年份的第',result,'天')
else:
temp = month-1
result=months1+day
print('这是这个年份的第',result,'天')
morxrc
发表于 2017-8-22 23:50:48
print ('_____判断一年的第几天______')
year=int(input('请输入年份'))
month=int(input('请输入月份'))
day=int(input('请输入日'))
months1=
months2=
result =0
if year%4==0:
temp = month-1
result=months2+day
print('这是这个年份的第',result,'天')
else:
temp = month-1
result=months1+day
print('这是这个年份的第',result,'天')
gausser
发表于 2017-9-4 23:58:08
month =
def DetermineDateOfYear(date):
# To Determine the days of month
IntOfMonth = int(date)
for i in range(IntOfMonth - 1):
DaysOfMonth = (i + 1) * month
# To Determine Leap year
IntOfYear = int(date)
if ((IntOfYear % 4 == 0) and (IntOfYear % 100 != 0)) or (IntOfYear % 400 == 0):
TotalDays = DaysOfMonth + 1 + int(date)
else: # Is not leap year
TotalDays = DaysOfMonth + int(date)
return TotalDays
DATE = raw_input("Enter the date(19700701):")
TotalDATE = DetermineDateOfYear(DATE)
print "The days of DATE is %d" % TotalDATE
太复杂了,之前学的C。。。。明天用python重新写一个。
BngThea
发表于 2017-9-11 11:03:47
def calday(month, day):
listm =
result = 0
for each in listm:
result += each
result += day
return result
flage = True
while flage:
year = int(input('Please enter the year:'))
month = int(input('Please enter the month:'))
day = int(input('Please enter the month:'))
days = calday(month,day)
if (year % 400 == 0) or (year % 100 and year%4 == 0):
days += 1
print('In ' + str(year) + ', ' + str(month) + '-' + str(day) + ' is the ' + str(days) + 'th day')
flage = str(input('Try again?(q to quit):'))
if flage in ['q','Q']:
print('ByeBye')
flage = False
易水寒楠
发表于 2017-9-17 22:55:04
用datetime模块实现。有模块用模块!
# -*-coding:gbk-*-
__author__ = 'chennan'
import datetime
x=int(input("请输入年份xxxx:"))
y=int(input("请输入月份xx:"))
z=int(input("请输入日xx:"))
n1=datetime.date(x,y,z)
n2=datetime.date(x,1,1)
n3=n1-n2
n3=int(n3.days)+1
print("这是这一年的第%s天"%n3)
驻火蚁
发表于 2017-9-23 21:34:59
n=int(input('year:'))
y=int(input('month:'))
r=int(input('day:'))
x=0
if n%4==0 and n%100!=0:
two=29
else:
two=28
for i in range(1,y):
if i in:
x+=31
elif i==2:
x+=two
else:
x+=30
print('%d月%d号是%d年的第%d天'%(y,r,n,(x+r)))
shigure_takimi
发表于 2017-12-1 16:35:59
def isRunnian(year):
return (year%4==0 and year%100!=0) or year%400 == 0
def theDay(year, month, date):
if isRunnian(year):
daysOfMonth =
else:
daysOfMonth =
days = sum(daysOfMonth[:month-1]) + date
print('%s年%s月%s日是这一年的第%s天' % (year, month, date, days))
theDay(2017,12,1)
#2017年12月1日是这一年的第335天
moyuqqxing
发表于 2017-12-19 21:37:47
新手·ing 发表于 2017-3-26 07:37
我的解答!
怎么我把这个程序输进去,没有结果出来啊。好奇怪的。第6行那里不太理解,麻烦楼主给讲解一下吧。
moyuqqxing
发表于 2017-12-19 21:52:53
Wofficre 发表于 2017-5-26 12:48
print("请输入某年某月某日")
a=int(input())
b=int(input())
怎么我输进去这个程序,输入的是2018年1月和2月的还正确,3月之后就计算不正确了。2018年3月2日输出的是92天。2018年4月2日就输出是182天了。
大头目
发表于 2018-1-12 13:36:26
y=int(input('input year:'))
m=int(input('input mounth:'))
d=int(input('input day:'))
list1=
for i in range(0,1000):
if 2012 + (4 * i) == 2012 or 2012 - (4 * i) == 2012:
list1=29
days=0
for j in range(0 , m+1):
days+=list1
days=days-31+d
print(days)
佑梦
发表于 2018-1-16 20:18:29
源稚空 发表于 2017-4-17 21:20
year = int(input('year = '))
month = int(input('month = '))
day= int(input('day = '))
方法很好,只是有点小瑕疵,应将today改为:today = ,today = 0
有鼻泡的犀牛
发表于 2018-1-16 22:32:57
def isT(year):
if((year % 100 != 0 and year % 4 == 0) or year % 400 == 0):
return True
else:
return False
mouths =
days =
year = int(input("please enter year:"))
mouth = int(input("please enter mouth"))
day = int(input("please enter day"))
flag = False
sum_days = 0
for i in range(12):
if (mouth > mouths):
sum_days += days
if(isT(year)):
print(sum_days + day + 1)
else:
print(sum_days + day)
wojiaodabai
发表于 2018-1-17 15:43:34
import datetime
date=input('年月日(比如:20130101):')
sli=date[:4]+'0101'
stop=datetime.datetime.strptime(date,'%Y%m%d')
start=datetime.datetime.strptime(sli,'%Y%m%d')
x=(stop-start).days
print('这是此年的第{}天'.format(x+1))
1141429506
发表于 2018-1-25 18:11:10
'''题目:输入某年某月某日,判断这一天是这一年的第几天?
程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于2时需考虑多加一天'''
# 一年有12个月,其中1月、3月、5月、7月、8月、10月、12月为31天;4月、6月、9月、11月为30天;2月为28天(闰年为29天)
# 闰年是公历中的名词,能被4整除但不能被100整除,或能被400整除的年份即为闰年。闰年366天
str1 = input('please input a certain day of the year.eg:xxxx年xx月xx日')
month = int(str1 + str1)
Today = int(str1 + str1)
year = int(str1 + str1 + str1 + str1)
# list_month=
day =
r = 0
for i in range(0, 13):
if (month >= i+1):
r += day
r += Today
if (year % 400 == 0):
print(str1, '是今年的第', r + 1, '天')
else:
print(str1, '是今年的第', r, '天')
1141429506
发表于 2018-1-25 18:11:54
'''题目:输入某年某月某日,判断这一天是这一年的第几天?
程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于2时需考虑多加一天'''
# 一年有12个月,其中1月、3月、5月、7月、8月、10月、12月为31天;4月、6月、9月、11月为30天;2月为28天(闰年为29天)
# 闰年是公历中的名词,能被4整除但不能被100整除,或能被400整除的年份即为闰年。闰年366天
str1 = input('please input a certain day of the year.eg:xxxx年xx月xx日')
month = int(str1 + str1)
Today = int(str1 + str1)
year = int(str1 + str1 + str1 + str1)
# list_month=
day =
r = 0
for i in range(0, 13):
if (month >= i+1):
r += day
r += Today
if (year % 400 == 0):
print(str1, '是今年的第', r + 1, '天')
else:
print(str1, '是今年的第', r, '天')
1141429506
发表于 2018-1-25 18:23:11
冬雪雪冬 发表于 2017-3-25 23:04
day2 = sum(days[:month - 1]) + day
这一行什么意思?
1141429506
发表于 2018-1-25 18:32:26
新手·ing 发表于 2017-3-26 07:37
我的解答!
print('这是 %s 年的第 %s 天!' % (year,sum))
%d是什么来着?