码迷,mamicode.com
首页 > 其他好文 > 详细

使用 # 号输出长方形

时间:2018-03-11 14:16:35      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:bsp   img   http   输出   image   gpo   pos   info   inpu   

使用 # 号输出一个长方形,用户可以指定宽和高

height = int(input("please input height: "))
width = int(input("please input width: "))

while height > 0:
tmp = width
while tmp > 0:
print("#", end="")
tmp -= 1
print()
height -= 1

测试结果: 

技术分享图片

使用 # 号输出长方形

标签:bsp   img   http   输出   image   gpo   pos   info   inpu   

原文地址:https://www.cnblogs.com/klvchen/p/8543299.html

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