Does python use the count method to handle string and list the same way?

前端 未结 0 728
太阳男子
太阳男子 2021-02-04 11:29
str1 = \'123\'
str2 = \'\'
print(str1.count(\'\')) # print 4
print(str2.count(\'\')) # print 1

list1 = [\'123\', \'123\']
list2 = [\'\', \'\']
print(list1.count(\'\'))          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题