numbers = []
for i in range(1,n+1):
numbers.append(i)
print(*numbers, sep='')
While solving questions on hacker rank I came across this question an I don't really understand what is the meaning of *numbers in the line:
print(*numbers, sep='')