import random
n=[random.randint(10,999) for i in range(int(input()))]
print(n,end=', ')
The problem is I need it to print without squared brackets. How can I change my code by not over complicating it.
Here is what it prints out:
[385, 396, 37, 835, 376]
,
and it needs to look like this
305, 396, 37, 835, 376
I have tried putting brackets in multiple places also I have tried deleting things and all that happens is it prints the same thing or there is error.