python的几个小程序

Posted

tags:

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

##九九乘法口诀

num1=1

while num1<10:

  num2=1

  while num2<=num1:

    print(num2,"*",num1,"=",num1*num2,end="   ")

    num2+=1

  print()

  num1+=1

 

#矩形

width = int(input("w=:"))
height = int(input("h=:"))
num_height = 1
while num_height <= height:
num_width = 1
while num_width <= width:
print("*", end="")
num_width += 1
print()
num_height += 1

 










以上是关于python的几个小程序的主要内容,如果未能解决你的问题,请参考以下文章

python教程---新手应该知道的几个小技巧

Python的几个小程序,其实我觉得可以称作初学时的基础算法

python turtle库的几个小demo

Python中使用字典的几个小技巧

Python安装需要注意的几个小事项...

让你变成优秀程序员的几个小习惯