码迷,mamicode.com
首页 > 编程语言 > 详细

Python 第三天

时间:2018-05-16 00:28:46      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:print   运算符   first   lse   部分   pytho   bsp   nbsp   lin   

  一、算术运算符

          + - * /  //(整除取整数) %(取余数) **

  二、比较符

             > < >= <= == != True False

 

  三、部分代码:

while num2>0:
        num=4
    while num >0:
        print("#",end="")
        num -=1
    print()
    num2 -=1
    
    
    
    
line=5
while line>0:
    #print("#")
    tmp=line
    while tmp>0:
        print("#",end="")
        tmp=tmp-1
        
    print()
    line -=1
first = 1
# second = 9

while first<=9:
    # print(str(first)+"*"+str(first)+"=",first*first)
    sec=1
    while sec <=first:
        print (str(sec)+"*"+str(first)+"="+str(first*sec),end="\t")
        sec=sec+1
    print()
    first=first+1
    

 

Python 第三天

标签:print   运算符   first   lse   部分   pytho   bsp   nbsp   lin   

原文地址:https://www.cnblogs.com/xmxnx/p/9043645.html

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