print("hello world")
height=float(input("请输入你的身高:"))
weight=float(input("请输入你的体重:"))
bmi=weight/(height*height)
print("您的bmi指数为:"+str(bmi))
#判断身材是否合理
if bmi<18.5:
   print ("您的体重过轻,多吃点")
if bmi>=18.5 and bmi<=24.9:
   print ("正常范围,继续保持")
if bmi>24.9:
   print ("您的体重过重")
if bmi>29:
   print("fat")

print('''
                      学编程你不是一个人在战斗
                      |
             _ _\--_ _|_
ⅠⅠ=======00000【/ 007---|
           _____\______|/------.
           /___mingrisoft.com___|
            \◎ ◎ ◎ ◎ ◎ ◎ ◎ ◎ ◎ ◉/
              ~~~~~~~~~~~~~~~~~~
''')

money_all = 56.75+72.91+88.50+26.37+68.51
money_all_str=str(money_all)
print("商品的总金额为:"+ money_all_str)
money_real = int(money_all)
money_real_str = str(money_all)
print("实收金额为:"+ money_all_str)

python=95
English=92
c=89
sub = python - c
avg = (python + English + c)/3
print("python课程和c语言课程的分数差:"+str(sub)+"分、n")
print("三门课的平均分:"+str(avg)+"分")

python = 95  #定义变量,存储python的分数
english = 92
c = 89
print("python = "+str(python)+ "english ="+str(english)+"c="+str(c)+"\n")
print("python<english的结果:"+str(python<english))
print("Python>english的结果:"+str(python>english))
print("Python==english的结果:"+str(python==english))
print("Python!=english的结果:"+str(python!=english))
print("Python<=english的结果:"+str(python<=english))
print("Python>=c的结果:"+str(python>=c))

print("\n手机店正在打折,活动进行中...")
strWeek = input("请输入中文星期(如星期一):")
intTime = int(input("请输入时间中的小时(范围0-23):"))
#判断是否满足活动参与条件(使用了if语句)
if(strWeek == "星期二" and (intTime>=10 and intTime <= 11))or(strWeek =="星期五"
 and(intTime>=14 and intTime<=15)):
    print("恭喜您,获得了折扣活动参与资格,快快选购吧!")
else:
    print("对不起,您晚来一步,期待下次活动...")

print("hello world")
height=1.85
print("您的身高:" + str(height))
weight=65
print("您的体重:" + str(weight))
bmi=weight/(height*height)
print("您的bmi指数为:"+str(bmi))
#判断身材是否合理
if bmi<18.5:
   print ("您的体重过轻,多吃点")
if bmi>=18.5 and bmi<=24.9:
   print ("正常范围,继续保持")
if bmi>24.9:
   print ("您的体重过重")
if bmi>29:
   print("fat")

 

第一周python作业的更多相关文章

  1. 第一周Python讲课内容--日记

    1.python的发展史,由荷兰人Guido van Rossum于1989年发明,第一个公开发行版发行于1991年...... 2.第一个helloword程序的开始 3.变量的含义,赋值传参数的作 ...

  2. 第一周python入门

    第一编程语言的分类: 1.机器语言  二进制编程 直接操作硬件 优点:执行速度快 缺点:开发效率低   面向机器编程 2.汇编语言 英文标签代替一串特定的二进制,直接操作硬件 缺点开发效率低   面向 ...

  3. Python 第一周编程作业

    一.  编程题 1.  结合turtle库使用手册,读懂下列代码,并在jupyter编译器中运行观察结果: 依次分析下代码: 第一行 通过保留字import引用了Python中用于绘制图形的turtl ...

  4. 16级第一周寒假作业F题

    Subsequence TimeLimit:1000MS  MemoryLimit:65536K 64-bit integer IO format:%lld Problem Description A ...

  5. FJUT16级第一周寒假作业题解J题

    题目链接:http://210.34.193.66:8080/vj/Contest.jsp?cid=160#P9 涨姿势之区间刷新 TimeLimit:2000MS  MemoryLimit:128M ...

  6. FJUT16级第一周寒假作业题解D题

    题目链接:http://210.34.193.66:8080/vj/Contest.jsp?cid=160#P3 第八集,体能训练 TimeLimit:1000MS  MemoryLimit:128M ...

  7. 第一周Python学习笔记

    Python 基本语法: ①  Python程序的格式:1.用代码高亮来标识函数丶语句等等 本身的代码高亮并没有实际的意义,只是用来辅助编程人员和阅读人员 更好的识别 2.程序以缩进来标识语句,缩进用 ...

  8. 第一周pta作业2

    7-2 求最大值及其下标 (20 分) 本题要求编写程序,找出给定的n个数中的最大值及其对应的最小下标(下标从0开始). 输入格式: 输入在第一行中给出一个正整数n(1<n≤10).第二行输入n ...

  9. 第一周pta作业1总结

    查找整数 本题要求从输入的N个整数中查找给定的X.如果找到,输出X的位置(从0开始数):如果没有找到,输出"Not Found". 输入格式: 输入在第一行中给出两个正整数N(≤2 ...

随机推荐

  1. Solution -「HNOI2013」消毒

    弱化一下,先考虑在二维上解决问题. 题目就转化为:有 \(n\) 个点 \((i, j)\) 需要被覆盖,而我们每次可以选一行或一列去覆盖,求覆盖所有点的最少选择次数. 如果我们对于每一个 \((i, ...

  2. 4-16译码器(always,case用法)

    4-16译码器学习记录 模块文件 1 module decoder_4_16( 2 a, 3 b, 4 c, 5 d, 6 out, 7 ); 8 input a; 9 input b; 10 inp ...

  3. 【每天学一点-05】使用umi.js代理,解决跨域问题(前端)

    一.user.ts 前端请求接口 import request from 'umi-request'; const getAway = '/user'; // 获取用户列表 export const ...

  4. AtCoder Beginner Contest 249 E - RLE // 动态规划 + 前缀和优化

    传送门:E - RLE (atcoder.jp) 题意: 求满足原长为N且转换后长度严格小于N条件的小写字母组成的字符串的数量,输出时对P取模. 其中,转换规则为,将连续相同的字串替换为"字 ...

  5. rust实现http时如何读取一个完整的request

    用stream.read_to_end是不行的,tcpstream不是文件没有明确的结束符 需要先读取http header节,再找Content-Length header,然后读取body. 这是 ...

  6. Class对象功能概述和Class对象功能获取Field

    Constructor[] getConstructors() Constructor getConstructor(类... parameterTypes) Constructor getDecla ...

  7. 有事务冲突时节点怎么加入MGR集群

    GreatSQL社区原创内容未经授权不得随意使用,转载请联系小编并注明来源. 目录 1. 问题场景描述 2. 如何修复 2.1 找出事务差异点 2.2 决定如何处理 3. 小结 文章推荐: 关于 Gr ...

  8. 强大博客搭建全过程(1)-hexo博客搭建保姆级教程

    1. 前言 本人本来使用国内的开源项目solo搭建了博客,但感觉1核CPU2G内存的服务器,还是稍微有点重,包括服务器内还搭建了数据库.如果自己开发然后搭建,耗费时间又比较多,于是乎开始寻找轻量型的博 ...

  9. 活动回顾|Apache DolphinScheduler x Pulsar 在线 Meetup

    关于 Apache DolphinScheduler: " Apache DolphinScheduler(Incubating) 是一个分布式去中心化.易扩展的可视化工作流任务调度系统,致 ...

  10. k8s vs k3s: 差异解析

    Kubernetes无疑是容器编排领域的领头羊.但目前,我们看到K3s或轻量级的Kubernetes发行版,轻巧.高效.快速,占用空间极小.鉴于目前企业对于在生产环境中使用K3s还是K8s感到纠结.我 ...