python4---打印长方形

Posted 风海洋

tags:

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

1:方法1
for i in range(6):
for j in range(3):
print("*", end=" ")
print()

2:输入显示长方形
weight = int(input("weight:"))
height = int(input("height:"))
num_height = 1
while num_height <= height:
num_width = 1
while num_width <= weight:
print("*", end="")
num_width += 1
print()
num_height +=1

以上是关于python4---打印长方形的主要内容,如果未能解决你的问题,请参考以下文章

python4

python4--作业

python4

python4 sqlalchemy模块学习

live Python4笔记

Python4 高级特性