I'm new to python programming and solving some problems in Hacker Rank.. the question was to read an interget N and print in the format of 123....N without using any string methods. I did the following
Answer = ''
for i in range(1,Input+1):
Answer += str(i)
print Answer
When i looked into the other solution one of the solution given was
print(*range(1,N+1), sep='')
I tried to understand this but could not. I could not find any documentation for *range. can someone pls help..