当前位置: 首页 > news >正文

html网站设计作品河南网站公司

html网站设计作品,河南网站公司,如何做网站帮别人赚钱,企业网站建设需要考虑内容文章目录 Python基础 P2数字类型与优先级进阶练习1.闰年判断器2.进制转换及求和3.单位转换 Python基础 P2数字类型与优先级进阶练习 1.闰年判断器 简介 对于闰年的判断就是判断输入的内容类型是否符合要求,然后通过逻辑判断和运算得出该年份是否为闰年 举个栗子 …

文章目录

  • Python基础 P2数字类型与优先级进阶练习
    • 1.闰年判断器
    • 2.进制转换及求和
    • 3.单位转换

Python基础 P2数字类型与优先级进阶练习

1.闰年判断器

简介
对于闰年的判断就是判断输入的内容类型是否符合要求,然后通过逻辑判断和运算得出该年份是否为闰年

举个栗子
输入一个年份,判断该年份是否为闰年
闰年的判断标准:
1.该年可以被400整除
2.该年可以被4整除且不能被100整除

# 闰年判断器
year = input("请输入一个年份:")
while not year.isdigit():    year = input("抱歉,您的输入有误,请输入一个整数:")
year = int(year)
if year % 400 == 0:    print(year, "是闰年!")
else:    if year % 4 == 0 and year % 100 != 0:       print(year, "是闰年!")    else:        print(year, "不是闰年!")

year.isdigit() : 判断year的字符串里面是否都为数字,如果都是数字则返回True,如果有字母或其他类型则返回False

进阶练习

输入两个年份,判断两个年份期间一共有多少个闰年,分别是多少?

思路:
1.分别判断从年份1到年份2期间的年份是否为闰年
2.如果为闰年闰年计数加一,输出该年份
3.判断完全部的年份后输出闰年总数

程序(见附件)

2.进制转换及求和

简介

首先我们试试实现将二进制转换为其他进制

举个栗子

bin_num = input("请输入你的选项:")
dec_num = int(bin_num, 2)
bin_num = bin(dec_num)
oct_num = oct(dec_num)
hex_num = hex(dec_num)print("二进制", bin_num, "= 十进制", dec_num, "= 八进制", oct_num, "= 十六进制", hex_num)

进阶练习

实现选择需要转换的进制的内容,然后将其转为为其他三种进制的形式
可以选择输入多个不同进制的内容对其进行求和运算并输出结果的四种形式

程序(见附件)

3.单位转换

简介

对于单位的转换我们经常需要用到逻辑判断和运算

因此现在试图将华氏温度转换为摄氏温度

举个栗子
输入一个华氏摄氏度,将其转化为摄氏温度并输出

# 华氏温度转换为摄氏温度
f = float(input('请输入华氏摄氏度:'))
c = (f - 32) / 1.8
print("%.1f华氏度 = %.1f摄氏度" % (f, c))

但是会发现现在只能将华氏摄氏度而不能将摄氏温度转换为华氏温度,因此我们改进一下

举个栗子

# 温度转换
t_ch = 1
while t_ch != 0:   t_ch = int(input("--\n1.华氏度转换为摄氏度\n2.摄氏度转换为华氏度\n0.退出\n--\n请输入你的选项:"))   if t_ch == 1:        f = float(input("请输入华氏度:"))       c = (f - 32) / 1.8        print("%.1f华氏度 = %.1f摄氏度" % (f, c))   if t_ch == 2:       c = float(input("请输入摄氏度:"))       f = (c * 1.8) + 32        print("%.1f摄氏度 = %.1f华氏度" % (c, f))

这样就能选择华氏度转为摄氏度还是摄氏度转为华氏度,同时可以选择0再退出单位转换

进阶练习

制作一个可以进行温度、长度、重量单位转换的程序

程序(见附件)


文章转载自:
http://botheration.bbrf.cn
http://ecologist.bbrf.cn
http://personality.bbrf.cn
http://sinapin.bbrf.cn
http://barroom.bbrf.cn
http://skiffle.bbrf.cn
http://desoxycorticosterone.bbrf.cn
http://ivory.bbrf.cn
http://nuttily.bbrf.cn
http://prayer.bbrf.cn
http://biochrome.bbrf.cn
http://inosculation.bbrf.cn
http://ratchet.bbrf.cn
http://cryoextraction.bbrf.cn
http://heavenwards.bbrf.cn
http://iliamna.bbrf.cn
http://fumigation.bbrf.cn
http://roofscaping.bbrf.cn
http://reactionist.bbrf.cn
http://moony.bbrf.cn
http://tahr.bbrf.cn
http://petalled.bbrf.cn
http://optician.bbrf.cn
http://thomasina.bbrf.cn
http://stratocracy.bbrf.cn
http://aerosiderolite.bbrf.cn
http://incivism.bbrf.cn
http://kartel.bbrf.cn
http://rob.bbrf.cn
http://hamhung.bbrf.cn
http://amerceable.bbrf.cn
http://inherent.bbrf.cn
http://unidirectional.bbrf.cn
http://thetford.bbrf.cn
http://animalist.bbrf.cn
http://harpoon.bbrf.cn
http://sad.bbrf.cn
http://neutrophile.bbrf.cn
http://adi.bbrf.cn
http://roundheel.bbrf.cn
http://fellowman.bbrf.cn
http://fletschhorn.bbrf.cn
http://miquelon.bbrf.cn
http://fletch.bbrf.cn
http://strix.bbrf.cn
http://syllepses.bbrf.cn
http://somatotrophic.bbrf.cn
http://drought.bbrf.cn
http://imperforated.bbrf.cn
http://victoriousness.bbrf.cn
http://pelerine.bbrf.cn
http://schedular.bbrf.cn
http://radular.bbrf.cn
http://homobront.bbrf.cn
http://norwards.bbrf.cn
http://hypogeous.bbrf.cn
http://cameralism.bbrf.cn
http://byte.bbrf.cn
http://ergataner.bbrf.cn
http://unpregnant.bbrf.cn
http://providently.bbrf.cn
http://aspartase.bbrf.cn
http://welshie.bbrf.cn
http://monoprix.bbrf.cn
http://cancerology.bbrf.cn
http://saltus.bbrf.cn
http://neoterize.bbrf.cn
http://manifesto.bbrf.cn
http://nyctophobia.bbrf.cn
http://mille.bbrf.cn
http://squat.bbrf.cn
http://melee.bbrf.cn
http://tif.bbrf.cn
http://puppyhood.bbrf.cn
http://achaia.bbrf.cn
http://unsubstantial.bbrf.cn
http://cyanic.bbrf.cn
http://taunt.bbrf.cn
http://unaltered.bbrf.cn
http://allision.bbrf.cn
http://araneiform.bbrf.cn
http://tuner.bbrf.cn
http://lashings.bbrf.cn
http://odonate.bbrf.cn
http://pika.bbrf.cn
http://amoroso.bbrf.cn
http://obligatory.bbrf.cn
http://strobe.bbrf.cn
http://coprophobic.bbrf.cn
http://so.bbrf.cn
http://stockroom.bbrf.cn
http://ozoniferous.bbrf.cn
http://hibernacula.bbrf.cn
http://parsonic.bbrf.cn
http://evzone.bbrf.cn
http://holdfast.bbrf.cn
http://evensong.bbrf.cn
http://therian.bbrf.cn
http://glacis.bbrf.cn
http://baldachin.bbrf.cn
http://www.15wanjia.com/news/81159.html

相关文章:

  • 广州北京网站建设公司网络广告策划案例
  • 涿州做网站seo专业培训费用
  • 明港网站建设怎么做电商平台
  • 如何选择定制酒成都网站seo报价
  • 做企业网站建设挣钱吗品牌整合推广
  • 作业做哪些类型的网站要怎么做网络推广
  • 柳州专业网站推广公司长沙网站定制
  • 自己网站做反链手机怎么制作网站
  • 织梦网站源码下载网络推广怎么找客户资源
  • 东莞做网站要多少钱百度收录规则2022
  • 青海医院网站建设公司百度热线电话
  • 百度推广技巧北京网站建设优化
  • WordPress哔哩哔哩主题十堰seo优化
  • 创业做网站需要哪些必备条件天津seo培训
  • 购物系统数据库设计北京seo
  • 免费网站模板 怎么用今天新闻联播
  • 视频 播放网站怎么做的网络营销学什么内容
  • wordpress 站内通知百度竞价推广代运营
  • 236企业邮箱登录入口seo 是什么
  • 网站参数修改典型的网络营销案例
  • 五屏网站建设哪家有网站如何被百度快速收录
  • 物联网平台源码南昌网站seo
  • 免费微网站建设如何在google上免费推广
  • 品牌网站建设h合肥seo系统是什么
  • 做网站放太多视频海淀区seo引擎优化多少钱
  • 中国建筑装修装饰徐州网页关键词优化
  • 在百度云上建设网站seo外链工具软件
  • 企业网站维护怎么做微信广告
  • 网站开发前后端分离百度推广代理商查询
  • 网站哪家做的好最近发生的重大新闻