标签: python arrays string
我想知道为什么以下python数组有效(注意'foo'和'bar'之间缺少逗号:
a = ['hello', 'world', 'foo' 'bar']
打印'a'输出以下内容:
['hello', 'world', 'foobar']
如果至少有一个逗号,为什么甚至允许省略逗号?我以为会有像
你用逗号分隔的字符串启动了数组,为什么现在你突然间,省略了逗号?你确定这不是错误吗?