标签: python python-3.x python-2.7
def count(n): while n > 0: n -= 1 count(100000000) count(100000000)
在这种情况下,这个程序会在多个核心上运行吗?