以下程序的输出结果是( )。
a = tuple('abcdefg')
print(a)
('a', 'b', 'c', 'd', 'e', 'f', 'g')
['a', 'b', 'c', 'd', 'e', 'f', 'g']
['abcdefg']
'abcdefg'