我试图用我已经拥有的矩形制作平行四边形,但我不确定如何在角色前面添加空格。我的代码是:
l=int(input("Enter the lenght of the rectangle: "))
w=int(input("Enter the width: "))
c=str(input("Enter the character: "))
def print_rect(l, w, c):
for a in range(w):
print(l*c)
print_rect(l, w, c)
我试过了
for n in range(l-1)
print("")`
但我不确定如何实施它或它是否真的可行
答案 0 :(得分:0)
你没有定义n。 对于空格,请使用循环计数器:
def print_rect(l, w, c):
for a in range(w):
print(a*" ", l*c)