xingkong0914 发表于 2021-9-6 00:45:07

如图,tmep=和guess=这个是在鱼C的哪节课讲的

>>> temp = input("Guess the number xin thinks in mind:")
Guess the number xin thinks in mind:
guess = int(temp)
>>> if guess == 6:
        print("My goodness why are you so smart?")
        print("But there is no reward for guessing")
else:
        if guess > 6:
                print("This number is too big")
        else:
                print("Now this number is smaller")
>>> ("game over")
'game over'
学到后面回过头看前面,发现>>> temp = input和>>>guess = int(temp)忘记了含义是什么,为什么要在这里使用,这个是在哪节课程讲解的,想回去复习一下,图中的问题是出现在04节小游戏改进中的,麻烦有朋友知道的提点一下,万分感激!

大马强 发表于 2021-9-6 06:55:59

第一节吧、
temp = input(),input()接收一个字符串,赋值给temp
guess = int(temp) , 将temp强行转化成整型赋值给guess

柿子饼同学 发表于 2021-9-6 08:02:31

应该是第一节的小游戏
第一句是把输入的东西赋值给 temp, int() 是把括号里的参数转换成整数

逃兵 发表于 2021-9-6 08:11:22

https://www.bilibili.com/video/BV1Fs411A7HZ?p=3

掉sai的黑键 发表于 2021-9-6 16:30:35

二楼三楼说的很清楚了。

傻眼貓咪 发表于 2021-9-8 17:11:28

{:5_105:}
页: [1]
查看完整版本: 如图,tmep=和guess=这个是在鱼C的哪节课讲的