自學python一周左右。寫了一個猜數位遊戲!,python猜數字

來源:互聯網
上載者:User

自學python一周左右。寫了一個猜數位遊戲!,python猜數字

print("-------------------------------------------------------")
print("-------------------------------------------------------")
print("--------------這是一個互相猜數位遊戲-----------------")
print('''先由你來猜。這是一個1-100之間的數字!
現在電腦已經確定一個數了,你猜是什麼!''')
luckynumber = 67
ln=int(input("請輸入你猜的數字:"))
while not ln == luckynumber:
if ln < luckynumber:
print("你輸入的數字比我的數字小!")
else:
print("你輸入的數字比我的數字大!")
ln=int(input("請再次輸入:"))
print("你猜對啦!就是",ln)
print("---------------------------------------------------------")
print("---------------------------------------------------------")
print("現在輪到computer猜了,請先在心目中定一個0-100之間的數字")
print("我猜的數如果比你的數大請輸入b,比你的數小請輸入s,相等請輸入e!")
print("確定好了嗎,computer開始猜了!按任意鍵開始")
ln=range(101)
while not len(ln)==1:
luckynumber=ln[len(ln)//2]
answer = input("是" + str(luckynumber) + "嗎?請回答:")
if answer =="b":
lista=len(ln)//2
ln=ln[:lista]
elif answer == "s":
listb=len(ln)//2
ln=ln[listb:]
elif answer == "e":
break
else:
print("請輸入b,s,e三種答案!")


# nb=0
# na=100
# ln = nb + (na - nb) // 2
# answer =ln
# while not answer=="e":
# ln = nb + (na - nb) // 2
# if answer =="b":
# na=ln
# elif answer == "s":
# nb=ln
# else:
# print("請輸入b,s,e三種答案!")
# answer = input("是" + str(ln) + "嗎?請回答:")

print("我猜對啦就是",luckynumber)
#    s=""
#    for i in range(101):
#        s=s+str(i)+" "
#    print(s)

# #有兩種方案,一種是數字,一種是列表。注釋中的是數字方案。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.