码迷,mamicode.com
首页 > 其他好文 > 详细

第一节

时间:2018-04-22 20:10:38      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:最大   换行   ==   nbsp   false   切换   循环   优先   NPU   

1,求三个值中的最大值:n1,n2,n3

       1,1  max=max(max(n1,n2),n3)

       1,2  if n1>=n2:    #取最大值

                      max=n1

                 else

                      max=n2

                 if n3>=max:   #取最大值

                      max=n3

                 else

                      pass

                  print("max:",max)

2,交互模式下:

    cd c:\    #切换到c目录

    dir        #显示当前目录下的文件

    exit()    #退出交互模式

    cls       #清空当前界面

3,赋值:

    num o=1  #o 为+-*/ ; num=num O 1

4,符号:

    %:求余 

    ||:整除

    \n:换行

   \t:制表符

5,逻辑运算符:

    优先级:or>and>or  

6,continue:跳出本次循环,继续下次循环,前边的代码照常执行,后边的不执行

     break:跳出循环,前边的照常执行

    True,False(大写)

6,求偶数:

  n=int(input("enter num:"))
  i=1
  if n<0:
    print("false")
  else:
    while i<=n: #求小于n的偶数
      if i%2==0:
        print("even number:",i)
      else:
        pass
      i=i+1

7,print("hello",end="")  #end链接下一句为一行

第一节

标签:最大   换行   ==   nbsp   false   切换   循环   优先   NPU   

原文地址:https://www.cnblogs.com/lmnh/p/8907061.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!