print
Tips
code:python
numbers = 2, 1, 3, 4, 7'
print(*numbers, sep=", ")
2, 1, 3, 4, 7
See also
IceCream Never use print() to debug again
pprint more human readable
pysnooper poorman's debugger