如图,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节小游戏改进中的,麻烦有朋友知道的提点一下,万分感激! 第一节吧、
temp = input(),input()接收一个字符串,赋值给temp
guess = int(temp) , 将temp强行转化成整型赋值给guess 应该是第一节的小游戏
第一句是把输入的东西赋值给 temp, int() 是把括号里的参数转换成整数
https://www.bilibili.com/video/BV1Fs411A7HZ?p=3 二楼三楼说的很清楚了。 {:5_105:}
页:
[1]