Q36Single correct3 Marks7 Aug 2022
What is the output of the following snippet of code?
```
for i in range(1, 6):
for j in range(i):
# there is no space between the quotes for the end argument
print("*", end = '')
print()
```