Python:raw_input读取数字的问题不幸的是raw_input没有做我需要它做的事情。我想要做的是获取totPrimes =我在提示符下键入的内容。如果我while count < totPrimes用while count < 50这个脚本替换工作。如果我在提示符下键入50,这个脚本不起作用,我担心raw_input不是我想要使用的函数吗?这是我的代码片段:testNum = 3div = 2count = 1totPrimes = raw_input("Please enter the primes: ")while count < totPrimes :
while div <= testNum :
添加回答
举报
0/150
提交
取消