Warning! The page was not fully loaded, probably because of a network issue. It could be that not all functionalities work as expected. Please try reloading the page.
aantal = int(input('Aantal lagen: '))
for i in range(1, aantal + 1):
laag = ''
for j in range(i):
laag += '='
print(laag)