zoukankan      html  css  js  c++  java
  • IF函数+While函数+For循环

    IF函数:


    单分支IF条件语法:

    if  判断条件:                   if  判断条件:

     print  执行结果       等效于=====>            print 执行结果

    else:                                         if  not 判断条件:

       print 执行结果                  print 执行结果


    多分支IF条件语法

    if   判断条件1:

        print 执行结果1

    elif     判断条件2:

             print 执行结果2

     。。。。。。。。

    elif  判断条件n

        print  执行结果n

    else  :

            执行结果

    注:这一系列条件判断会从上到下依次判断,如果某个判断为 True,执行完对应的代码块,后面的条件判断就直接忽略,不再执行了。


    For循环语法

    For循环一般哟过来遍历数组,例如List数组或者tuple数组的每隔数值

    Eg:

    L = [75, 92, 59, 68]
    sum = 0.0
    for name in L:
    sum=sum+name
    print sum / 4


    For循环中的Break和Continue的用法

    Break的用法:跳出本次循环,后面循环都不执行

    for i in range (1,6):

        print
        print 'i=',i,
        print 'Hello,what is ',
        if i==3:
            break
        print 'the weather today?'
    执行结果:
    i= 1 Hello,what is  the weather today?

    i= 2 Hello,what is  the weather today?

    i= 3 Hello,what is 

    Continue的用法:跳出本次循环,后面依旧执行
    for i in range (1,6):
        print
        print 'i=',i,
        print 'Hello,how',
        if i==3:
            continue
        print 'are you today?'

    执行结果:

    i= 1 Hello,how are you today?
    i= 2 Hello,how are you today?
    i= 3 Hello,how
    i= 4 Hello,how are you today?

    i= 5 Hello,how are you today?

    i= 6 Hello,how are you today?

  • 相关阅读:
    vue笔记-inheritAttrs及$attr表示含义(一)
    Springboot项目使用junit-test(@Test)报错原因汇总
    @Configuration的使用
    Spring-RabbitMQ实现商品的同步(后台系统)
    RabbitMQ持久化和非持久化
    spring-AMQP-RabbitMQ
    RabbitMQ的5种模式
    RabbitMQ消息队列+安装+工具介绍
    Mina整体体系结构分析
    Mina入门级客户端程序实现telnet程序
  • 原文地址:https://www.cnblogs.com/sjsmyy/p/8488499.html
Copyright © 2011-2022 走看看