一月7日

for循环制作等腰三角形

for i in range(1, 10, 2):
for j in range(10 - i):
print(' ', end='')
s = '* ' * i
print(s)
原文地址:https://www.cnblogs.com/zxpnb/p/14246136.html