金字塔_python3
字符金字塔
http://www.nowcoder.com/questionTerminal/0fae60c3b5c64699b7c0f031c2187dde
c = input()
for i in range(5):
for j in range (i+5):
if i + j > 3 and (i + j) % 2 == 0:
print(c, end = '')
else:
print(' ', end = '')
print()
