用python计算1×3×5×7××2017×2019的代码
n = 2019 result = 1 for i in range(1, n+1, 2): result *= i print(result)
原文地址: https://www.cveoy.top/t/topic/ZtO 著作权归作者所有。请勿转载和采集!
安全问答是一个知识全球问答,包含丰富的问答知识
n = 2019 result = 1 for i in range(1, n+1, 2): result *= i print(result)
原文地址: https://www.cveoy.top/t/topic/ZtO 著作权归作者所有。请勿转载和采集!