im dumb and how do you print lists with out the brakets.
Thanks random people
WWEMONSTERMONST You can print elements of a list without brackets by using the starred expression. For example:
nums = [1, 2, 3, 4]
print (*nums) # 1 2 3 4
`1 year ago
SixBeeps There's a tone of ways to do it. I think the canonical solution is to use .join() and using something like ", " as the separator.1 year ago