Python 第三天

Posted xmxnx

tags:

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

  一、算术运算符

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

  二、比较符

             > < >= <= == != 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 第三天的主要内容,如果未能解决你的问题,请参考以下文章

Python 第三天

2018-10-11学习python第三天

python第三天

Python学习第三天(面向对象编程)01

python第三天作业

python练习第三天