# 输入年月日,如:1995年12月10日,计算是该年的第几天?# 同时计算出当天是星期几? print("请依据提示依次输入您想查询的年 月 日") # 第一段代码块(年月日输入)开始 # 输入年份并对输入值进行判断其合理性 while True: year = int(input("请输入您想查询所在的年份(1970~2038年):")) if 1970 <= year <= 2038: if (year%4 ==0 and year%100 !=0…
Python 程序能用很多方式处理日期和时间,转换日期格式是一个常见的功能. Python 提供了一个 time 和 calendar 模块可以用于格式化日期和时间. 时间间隔是以秒为单位的浮点小数. 每个时间戳都以自从1970年1月1日午夜(历元)经过了多长时间来表示. Python 的 time 模块下有很多函数可以转换常见日期格式.如函数time.time()用于获取当前时间戳 import time; # 引入time模块 ticks = time.time() print ("当前时间…
输入您的身高 体重 性别 计算出你的体重是否标准 gender = input('请输入您的性别(boy or girl):') height = input('请输入您的身高(单位cm):') height = float(height) weight = input('请输入您的体重(单位kg):') weight = float(weight) if gender == 'boy': print('您的性别:男') standard = (height - 100)*0.9 if stan…
请您输入数字,每个数字采用回车结束,当您输入型号*时,则结束数字输入,输出所有数字的总和 def num_sum(): i = 0 while True: get_num = input("请您输入数字(当时*时则终止返回结果):") if "*" == get_num: break else: i += float(get_num) continue print(i) num_sum()…
1 / 1 - 1 / 3 + 1 / 5 - 1 / 7 + ....求100000个这样的分式计算之为是多少?将此值乘以4后打印出来,看看是什么? num_list = [] count = -1 i = 1 while True: count *= -1 a = (1 / i)*count num_list.append(a) i += 2 if len(num_list) == 100000: break print(sum(num_list)) print(sum(num_list)*…
# 计算最大公约数 def gcd(x,y): """ 计算最大公约数 :param x:一个正整数 :param y:一个正整数 :return:x,y的最大公约数 """ (x,y)=(y,x) if x>y else (x,y) for factor in range(x, 0, -1): #使用range的时候,可使用负数步长,前面加上-即可 if x % factor == 0 and y % factor == 0: retur…
#include <stdio.h> struct time{ int year; int month; int day;}; int main(void) { struct time s1; int n; while(scanf("%d-%d-%d",&s1.year,&s1.month,&s1.day)!=EOF) { ==||s1.year%==) { ) printf("%d\n",s1.day); ) printf();…
#coding = utf-8 def getLastDay(): y = int(input("Please input year :")) m = int(input("please input month :")) d = int(input("Please input day :")) s=0 if y <1: y=1 if m <1: m=1 if m>12: m=12 if d <1: d=1 mothday=…
Python编程从入门到实践笔记——用户输入和while循环 #coding=utf-8 #函数input()让程序暂停运行,等待用户输入一些文本.得到用户的输入以后将其存储在一个变量中,方便后续使用 name=input("Please Enter Your Name:") print("Hello!"+name+"!Welcome to Python world!") prompt = "If you tell us who you…
from datetime import datetime, date, timedelta, timezone from time import time, ctime, localtime, strftime, strptime, mktime ''' %Y %m %d %H %M %S 年月日时分秒 %A %a 全写星期 简写星期 ''' # 生成当前时区日期事件字符串 tct = ctime() print(tct,type(tct)) print(tct.strip(),type(tc…