python中split() 后的list 为什么len为1?

str1 = "11,12,13,14"
list1 = str1.split(',')
print(len(list1))
1

半角和全角的逗号是两个不同的字符

一个是,一个是 ,