早教吧作业答案频道 -->其他-->
python2.5与python3.2有什么区别importrandomsecret=random.randint(1,100)guess=0tries=0print("ahoy!I'mthedreadpirate,andihaveasecret!")print("itisanumberfrom1to99.i'11giveyou6tries.")whileguess=secretandtriessecret:p
题目详情
python2.5与python3.2有什么区别
import random
secret = random.randint(1,100)
guess = 0
tries = 0
print ("ahoy!I'm the dread pirate,and i have a secret!")
print ("it is a number from 1to 99.i'11 give you 6 tries.")
while guess =secret and tries secret:
print ("too high,landlubber!")
tries = tries + 1
if guess == secret:
print ("avast!ye got it!gound my secret,ye did!")
else:
print ("no more guesses!butter luck next time,matey!")
print ("the secret numbei wad"),secret
这个在3.2里怎么运行不了
import random
secret = random.randint(1,100)
guess = 0
tries = 0
print ("ahoy!I'm the dread pirate,and i have a secret!")
print ("it is a number from 1to 99.i'11 give you 6 tries.")
while guess =secret and tries secret:
print ("too high,landlubber!")
tries = tries + 1
if guess == secret:
print ("avast!ye got it!gound my secret,ye did!")
else:
print ("no more guesses!butter luck next time,matey!")
print ("the secret numbei wad"),secret
这个在3.2里怎么运行不了
▼优质解答
答案和解析
guess = 20, input("what's yer guess?")
这里是相当于把一个 tuple 赋给 guess
所以执行if guess < secret: 认为两端类型不匹配.
最后一句:
print ("the secret numbei wad"), secret
print 只会打印出括号中的信息,括号外的数据是不会打印的
这里是相当于把一个 tuple 赋给 guess
所以执行if guess < secret: 认为两端类型不匹配.
最后一句:
print ("the secret numbei wad"), secret
print 只会打印出括号中的信息,括号外的数据是不会打印的
看了 python2.5与pyth...的网友还看了以下:
线速度是物体通过的弧长△s与所用时间△t的比值,公式v===(分别用r、T、f、n表示),角速度是 2020-05-13 …
自动控制原理 稳态误差问题:终值定理的适用条件胡寿松第五版P108页有例题:设单位反馈系统的开环传 2020-05-13 …
1)有三个关系R,S和T如下 R(AB m1 n2) S(BC 13 35) T(ABC m13) 2020-05-17 …
(33)设关系 R 和S 的元数分别是r 和 s,则集合{t | t = < t r,t s>S } 2020-05-23 …
设关系R和S的元数分别是r和s,且R有n个元组,s有m个元组。执行关系R和S的笛卡尔积,记为T=R× 2020-05-23 …
设关系R和S的元数分别是r和s,且R有n个元组,S有m个元组。执行关系R和S的笛卡儿积,记为T=R× 2020-05-24 …
设R和S分别是r和s元关系,且E有n个元组,s有m个元组。执行关系R和S的笛卡尔积,记为T=R×S, 2020-05-24 …
置点沿半径为R的圆周作匀速度圆周运动,每T秒转一圈,在2T时间间隔中,其平均速度大小与平均速率分别 2020-06-15 …
matlab求解二阶导数方程,四个方程四个未知量>>symst>>E=32;G=10.81;b=2 2020-07-19 …
一物体沿半径分别为r和R的半圆弧由A经B运动到C,经历的时间为t,如图所示,则它的平均速度和平均速率 2020-11-26 …