(10%)
Determine whether the following code is correct or not. If it is
correct, predict its output. If it is incorrect, point out the
mistake(s).
# sep and end parameters of print()
print('*', '*', '*', sep=':')
for i in range(2):
print('*', end=' ')
for j in range(3):
print('*')