Python:raw_input读取数字的问题

Python:raw_input读取数字的问题

不幸的是raw_input没有做我需要它做的事情。我想要做的是获取totPrimes =我在提示符下键入的内容。如果我while count < totPrimeswhile count < 50这个脚本替换工作。如果我在提示符下键入50,这个脚本不起作用,我担心raw_input不是我想要使用的函数吗?这是我的代码片段:

testNum = 3div = 2count = 1totPrimes = raw_input("Please enter the primes: ")while count < totPrimes :
    while div <= testNum :


BIG阳
浏览 671回答 3
3回答

犯罪嫌疑人X

做totPrimes&nbsp;=&nbsp;int(totPrimes)while&nbsp;count&nbsp;<&nbsp;totPrimes: &nbsp;&nbsp;&nbsp;&nbsp;#&nbsp;coderaw_input&nbsp;给你一个字符串,你必须在进行任何数字比较之前转换为整数或浮点数。

吃鸡游戏

你需要将totPrimes转换成这样的int:integer&nbsp;=&nbsp;int(totPrimes)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python