List comprehensions always return a list.
Based on this information, your print() statement must wrap the whole list comprehension argument:
Numbers = [1, 2, 3]
print([x for x in Numbers])
If you want to print items of a list one by one, a for loop is more suitable for this matter.