python练习题程序4
Posted yelublue
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python练习题程序4相关的知识,希望对你有一定的参考价值。
# 题目:输入某年某月某日,判断这一天是这一年的第几天? import time year = input(‘输入年份: \n‘) month = input(‘输入月份: \n‘) day = input(‘输入日期: \n‘) t = year.strip() + ‘-‘ + month.strip() + ‘-‘ + day.strip() k = time.strptime(t,‘%Y-%m-%d‘) print(k.tm_yday)
以上是关于python练习题程序4的主要内容,如果未能解决你的问题,请参考以下文章