generator 到list
list_occurrences = [ occ for occ in occurrences ]
or
list_occurrences = list(occurrences)
代码错误直接复制Google,不要用中文搜索
generator 到list
list_occurrences = [ occ for occ in occurrences ]
or
list_occurrences = list(occurrences)
代码错误直接复制Google,不要用中文搜索