I have a list in python e.g.
letters = ["a", "b", "e"]
And I can print it without the default []:
print(', '.join(letters))
a, b, e
But how can I print out A, B, E so that the strings in the list are all uppercase?
I tried doing print(', '.join(letters).upper) but that didn't work.