python基础学习2

2018-08-21 05:42:32来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

一.算数运算符

+加法,-减法,*乘法,/除法,//地板除,%求余,**幂运算。

二.逻辑运算符

非not、且and、或or。优先级依次为not,and,or。

三.print()end结尾

print()#默认为print(end="\n"),想要输出在一行可写为print(end="")

四.while循环

num = 1
while num<10: 
    print(num)  
    num+=1 

  break为终止当前循环体,continue为结束当次循环。

age=30
while True:
    input_age = int(input("Age is :"))
    if input_age == age:
        print("It's right.")
        break
    elif input_age > age:
        print("It's bigger.")
    else:
        print("It's smaller.")       
print("End")

五.while和else的配套使用

num = 1
while num <= 5:
    num += 1   
    print(num)
else:
    print("This is else statement")

如果使用break,那么else也不会执行。

六.while的嵌套使用--输出九九乘法表

row = 1
while row<=9:
    col = 1    
    while col <= row:
        print(  str(col)+"*"+ str(row) +"="+str(col * row), end="\t")
        col += 1        
    print()    
    row += 1
    

  

  

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:为什么Python为这么慢?

下一篇:Python之父|仁慈的独裁者