孤妓与酒 发表于 2021-2-3 18:11:19

第五讲:猜数字提醒输入不合法

这个怎么原来的代码里面让他进行下去啊??为啥我插进去不管输入啥都是不合法??

#这是原代码
import random
times = 3
secret = random.randint(1,10)
print('------------------我爱鱼C工作室------------------')
# 这里先给guess赋值(赋一个绝对不等于secret的值)
guess = 0
# print()默认是打印完字符串会自动添加一个换行符,end=" "参数告诉print()用空格代替换行
# 嗯,小甲鱼觉得富有创意的你应该会尝试用 end="JJ"?
print("不妨猜一下小甲鱼现在心里想的是哪个数字:")
while (guess != secret) and (times > 0):
    temp = input()
    guess = int(temp)
    times = times - 1 # 用户每输入一次,可用机会就-1
    if guess == secret:
      print("我草,你是小甲鱼心里的蛔虫吗?!")
      print("哼,猜中了也没有奖励!")
    else:
      if guess > secret:
            print("哥,大了大了~~~")
      else:
            print("嘿,小了,小了~~~")
      if times > 0:
            print("再试一次吧:")
      else:
            print("机会用光咯T_T")
print("游戏结束,不玩啦^_^")


#这是要插入的
temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")
# not操作符的作用是将布尔类型的结果翻转:即取反的意思,not True == Flase
while not isinstance(temp, int):
    print("抱歉,输入不合法,", end='')
    temp = input("请输入一个整数:")

Daniel_Zhang 发表于 2021-2-3 18:18:32

因为 input 默认是 str 类型


所以 while 的判断那里 not False 就是 True

输入的东西都是 str 类型,不论你输入了什么

可以使用

while temp.isdigit(): 替代 while not isinstance(temp, int):

qq1151985918 发表于 2021-2-3 18:26:04

必须用给定的这个代码吗?能不能加别的?

javezhan 发表于 2021-2-3 18:30:35

因为input()是提取用户输入,一直是字符串,temp是用户输入的内容,是字符串比如:
>>>type(input())
3
<class 'str'>
(isinstance(temp, int))就返回false,使用temp.isdigit()判断
.isdigit()返回布尔类型,如果字符串只有数字构成就返回ture,否则返回false
比如:>>> a = '1'
>>> a.isdigit()
True
>>>
>>> a = 'a112'
>>> a.isdigit()
False
>>>

所以这么改:


#这是要插入的
temp = input("不妨猜一下小甲鱼现在心里想的是哪个数字:")
# not操作符的作用是将布尔类型的结果翻转:即取反的意思,not True == Flase
while not temp.isdigit():
    print("抱歉,输入不合法,", end='')
    temp = input("请输入一个整数:")

ncx0331 发表于 2021-2-3 19:08:30

本帖最后由 ncx0331 于 2021-2-4 10:16 编辑

这样

#这是原代码
import random
times = 3
secret = random.randint(1,10)
print('------------------我爱鱼C工作室------------------')
# 这里先给guess赋值(赋一个绝对不等于secret的值)
guess = 0
# print()默认是打印完字符串会自动添加一个换行符,end=" "参数告诉print()用空格代替换行
# 嗯,小甲鱼觉得富有创意的你应该会尝试用 end="JJ"?
#这是要插入的
temp = int(input("不妨猜一下小甲鱼现在心里想的是哪个数字:"))
# not操作符的作用是将布尔类型的结果翻转:即取反的意思,not True == Flase
while not isinstance(temp, int):
    print("抱歉,输入不合法,", end='')
    temp = int(input("不妨猜一下小甲鱼现在心里想的是哪个数字:"))
while (guess != secret) and (times > 0):
    guess = int(temp)
    times = times - 1 # 用户每输入一次,可用机会就-1
    if guess == secret:
      print("我草,你是小甲鱼心里的蛔虫吗?!")
      print("哼,猜中了也没有奖励!")
    else:
      if guess > secret:
            print("哥,大了大了~~~")
      else:
            print("嘿,小了,小了~~~")
      if times > 0:
            print("再试一次吧:")
      else:
            print("机会用光咯T_T")
print("游戏结束,不玩啦^_^")

qq1151985918 发表于 2021-2-4 08:46:19

{:9_227:}

孤妓与酒 发表于 2021-2-4 10:08:53

qq1151985918 发表于 2021-2-4 08:46


???

孤妓与酒 发表于 2021-2-4 10:11:39

ncx0331 发表于 2021-2-3 19:08
这样

大佬,你自己试过吗??
temp = input("请输入一个整数:")"不妨猜一下小甲鱼现在心里想的是哪个数字:")
这个压根用不了

qq1151985918 发表于 2021-2-4 10:14:42

qq1151985918 发表于 2021-2-4 08:46


本来我是想让你用 isdigit() 直接就就解决了,看到大佬们都说了

孤妓与酒 发表于 2021-2-4 10:17:10

Daniel_Zhang 发表于 2021-2-3 18:18
因为 input 默认是 str 类型




while not isinstance(temp, int):
这个不能插进去??

ncx0331 发表于 2021-2-4 10:18:11

{:9_241:}

孤妓与酒 发表于 2021-2-4 10:33:50

额,就那插入的是不是实现不了,小甲鱼的作业上只是一个扩展?!?{:10_247:}

孤妓与酒 发表于 2021-2-4 10:41:55

javezhan 发表于 2021-2-3 18:30
因为input()是提取用户输入,一直是字符串,temp是用户输入的内容,是字符串比如:

(isinstance(temp,...

大佬,完整的代码给我来一份呗,用 while not temp.isdigit(): 的话应该插在哪合适??

Daniel_Zhang 发表于 2021-2-4 12:22:33

感觉你想插入的那个代码只是一个示例而已,怎么看都在这里用不上,input() 获取到的一定是一个 str 类型的,你后面再怎么用 isinstance(temp, int) 返回的都是 False

也就是说无论你输入的是什么,你都会是不合法的

这是我学这一块的时候写的

import random

print("---------- This is my first try -----------")
number = random.randint(0, 19)   # get a random number from
times = 0   # how many chance the player already used
chance = 5# how many chance the player have
while(times < chance):
    temp = input("enter a number here!\n")
    if temp.isdigit():
      times += 1
      guess = int(temp)
      if(guess == number):
            print("yes, you are right!\nCongradulations, you win!")
            break
      else:
            if(times < chance):
                print("please try again!")
                if(guess < number):
                  print("it is too small!")
                elif(guess > number):
                  print("it is too big!")
                print("chance tried: " + str(times) + "/" + str(chance))
            else:
                print("you run out of the chance!\ngame is over!")

孤妓与酒 发表于 2021-2-4 12:42:22

Daniel_Zhang 发表于 2021-2-4 12:22
感觉你想插入的那个代码只是一个示例而已,怎么看都在这里用不上,input() 获取到的一定是一个 str 类型的 ...

大佬
页: [1]
查看完整版本: 第五讲:猜数字提醒输入不合法