Add exercise

haskell
Oystein Kristoffer Tveit 2020-09-14 16:36:27 +02:00
parent cc7533e152
commit 458c2de38b
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
def numberPyramid(length):
for i in range(length):
print('X', ' ' * i + 'X')
def numberPyramidDoubleLoop(length):
for i in range(length):
space = ''.join([' ' for _ in range(i)])
print('X', space + 'X')
if __name__ == "__main__":
n = int(input('n: '))
numberPyramidDoubleLoop(n)