How do you create a tuple with a single element?
B) t = ('a',)
t = ('a',)
D) t = {('a')}
t = {('a')}
A) t = ('a')
t = ('a')
C) t = ['a']
t = ['a']