python入门小程序2

Posted xiaotian999

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python入门小程序2相关的知识,希望对你有一定的参考价值。

1、猜年龄

 age_of_princal=78

 guess_age =int(input(">>:"))

 if guess_age == age_of_princal:

  print("you are right")

2、猜年龄加强版

age_of_princal=78

 guess_age =int(input(">>:"))

 if guess_age == age_of_princal:

  print("you are right")

elif guess_age > age_of_princal:

  print("you should try samller")

else:

  print("you should try bigger")

3,判定成绩等级

score=int(input("score:"))

if score>90:

  print("A")

elif score>80:

  print("B")

elif score>70:

  print("C")

else:

  print("滚")

4、print(“A”+“B”)输出的结果为AB

      print("A","B")输出的结果为A B

5、基本的运算    除法:   5/2=2.5       5//2=2整除    取余数9%2=1

                          指数运算:2**10=1024         指数运算符优先于乘法运算符

                          优先级(2+3)*5

    在Python没有大括号和中括号 只有小括号能够使用优先级,只使用小括号。

    (((2+3)*5)/2)*3从里面往外面一层层计算。

                         比较大小:a=3 b=5

                                          a>b  

                                              false

                                          b>a        

                                         ture

                          不等于是  !=        

                          大于等于  >=

                          小于等于  <=            

                   if a>b>c

                     print("ture")

          

以上是关于python入门小程序2的主要内容,如果未能解决你的问题,请参考以下文章

Python从入门到进阶2Python环境的安装

04-2python语法入门之基本数据类型

全面系统Python3入门+进阶_汇总

Python入门小程序

Python入门小程序1

python入门