导航:首页 > 编程语言 > python猜数1100

python猜数1100

发布时间:2024-08-15 18:13:55

python作业,猜数游戏

#python3.6+
fromrandomimportrandint,choice


MAX=5


defrd(h=3,repeat=False):
a=randint(1,9)
choices=[iforiinrange(0,10)ifi!=a]
ns=[a]
foriinrange(h-1):
n=choice(choices)
ns.append(n)
choices=[iforiinchoicesifi!=norrepeat]
return''.join([str(i)foriinns])


defmain():
answer=input('Pleaseinputanumber:')
foriinrange(MAX):
n=rd()
q=input(f'{i+1}.Is{n}therightnumber?[y/(n)]')
ifq.strip()=='y':
print('Done!')
return
print('Guesstimereachlimit.Exit!')


if__name__=='__main__':
main()

Ⅱ 初学python,被作业难到了,做一个猜数游戏,给十次机会,写完运行不出来,求大佬看看

import random

target=random.randint(1,1000)

count=0

while True:

try:

guess=eval(input("猜猜这个数是什么,一共有10次机会哦"))

except:

continue

print("请输入一个整数")

if guess<target:

print("猜小了")

count=+1

elif guess>target:

print("猜大了")

count=+1

elif count==10:

print("机会用完了,欢迎下次再来!")

break

else:

print("猜对了,正确答案为",target,"/n","一共猜了{}次".format(count))

break

Ⅲ python编程 编写程序自动生成0到100间的一个随机数,然后让参与者输入昵称和数字,最后判断谁猜得最准

#!/usr/bin/python3# -*- coding:utf-8 -*-"""@author:Storm_ck@file :20200605-01.py@time :2020/6/5 15:20""""""猜数字,看谁猜的最接近"""import randomdef get_abs(rannum, ansnum):return abs(ansnum - rannum)if __name__ == "__main__":num = random.randint(1, 100)adic = {}lens = 0while True:choice = input("What's your name?,enter to quit:")if choice == "enter":breakif choice != "enter":answer = int(input("What's your guess(1-100):"))lens += 1if choice in adic.keys():adic[choice] = answerelse:adic.setdefault(choice, answer)newlist = sorted(adic.items(), key = lambda kv: get_abs(num, kv[1]), reverse = False)if newlist[0][1] != newlist[1][1]:if num == newlist[0][1]:print("{} 厉害,数字就是{}:".format(newlist[0][0], newlist[0][1]))else:print("数字是{},猜的最接近的是:{}".format(num, newlist[0][0]))else:temp = []alist = list(zip(*newlist))[1]t = alist[0]for i in range(alist.count(t)):temp.append(newlist[i][0])astr = ",".join(temp)if num == t:print("{}都比较厉害,数字就是{}:".format(astr, num))else:print("数字是{},{}的答案相同,猜的最接近。".format(num, astr))

Ⅳ 一道python题,猜数游戏

先随机出来一个合适范围的数字
因为循环次数不确定,所以用int num=0;while((num++)!=6)循环体,猜对就break,每次num++,最终根据num的数值来用if else或者switch语句来输出

Ⅳ 编写Python程序,生成一个0~100之间的随机数,然后让用户尝试猜测这个数字。(完整在详情)

建立猜数类,累属性随机一个一到一百的数字,然后进行判断。做完后发现还是有个次数限制更有意思,所以做了个装饰器统计次数,10次没猜出来就结束,如果不想要去掉即可。

Ⅵ 利用while判断来制作一个猜数字的小游戏python

# while循环做的猜数游戏
import random
# 首先引入random包,随机生成一个数
result = random.randint(1, 10)
while True:
answer = int(input('请输入您猜的数:'))
if answer == result:
print('恭喜你答对了')
break
else:
print('猜错了')

运行结果如图:

Ⅶ 用python写一个猜数字程序。不要用函数。运行结果如图。

importrandom

while1:
mx=int(input("请输入猜数范围(50以内):1-"))
while(mx>50ormx<1):
mx=int(input("请输入猜数范围(50以内):1-"))
print("下面将产生一个1-{0}的随机数".format(mx))
num=random.Random().randint(0,mx)
gCount=0
whilegCount<5:
gCount+=1
gNum=int(input("猜一下是多少:"))
ifgNum==num:
print("你猜对了! 这次的得分是{0}".format(2^(6-gCount)*mx))
break
elifgNum>num:
print("太大了~~")
else:
print("太小了~~")
ifinput("再来一次?yes/no").lower()!="yes":break

阅读全文

与python猜数1100相关的资料

热点内容
上滑命令 浏览:901
linux红帽服务器版 浏览:65
检查jdk版本命令 浏览:962
如何加入叶枫服务器 浏览:863
android虚拟机权限 浏览:73
趋势平均力度源码 浏览:280
做程序员好难 浏览:240
晚年程序员的生活 浏览:411
安卓什么型号可以用两年不卡 浏览:188
安卓怎么一边玩游戏一边打电话 浏览:282
体育综合分的算法 浏览:599
用友客户端连服务器P地址 浏览:525
程序员小工具有哪些 浏览:850
android难用 浏览:253
2021金砖论坛数据算法盛宴 浏览:744
职校学计算机出来可以当程序员吗 浏览:478
androidxml命名 浏览:85
批命令if 浏览:101
手机桌面出现安卓图标怎么办 浏览:965
php网站生成app 浏览:731