输入符号,宽,高,打印此符号组成的矩形

def boxPrint(symbol, width, height):
    if len(symbol) != 1:
        raise Exception('Symbol(符号) must be a single character string.')
    if width <= 2:
        raise Exception('Width must be greater than 2.')
    if height <= 2:
        raise Exception('Height must be greater than 2.')
    print(symbol * width)
    for i in range(height - 2):
        print(symbol + (' ' * (width - 2)) + symbol)
    print(symbol * width)
    
for sym, w, h in (('*', 4, 4), ('O', 5, 5), ('x', 1, 3), ('ZZ', 3, 3)):
    try:
        boxPrint(sym, w, h)
    except Exception as err:
        print('An exception happened: ' + str(err))

'''输出:
****
*  *
*  *
****
OOOOO
O   O
O   O
O   O
OOOOO
An exception happened: Width must be greater than 2.
An exception happened: Symbol must be a single character string.

 

转载于:https://www.cnblogs.com/chenxi188/p/10523874.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值