This is my code so far but it only makes on half of the mountain image out of the *'s I'm trying to go for
How do I mirror the code or change it so that it creates that same mountain side, but on the left side as well?
It should look something like this: /\
size = 5
for row in range(0, size+5):
for columnSpc in range(size+row):
print('*', end='')
for columnStar in range(row+row):
print('*', end='')
print()