**:
import random
times = 3
secret = random.randint(1,10)
print('------------------------------------')
guess = 0
print("不妨猜一下我現在心裡想的是哪個數字:", end=" ")
while (guess != secret) and (times > 0):
temp = input()
if temp.isdigit():
guess = int(temp)
if guess == secret:
print("猜對了!")
else:
if guess > secret:
print("大了大了")
else:
print("小了,小了")
if times > 1:
print("再試一次吧:", end='')
else:
print("機會用光咯t_t")
else:
print("抱歉,您的輸入有誤,請輸入乙個整數:", end='')
times = times - 1 # 使用者每輸入一次,可用機會就-1
print("遊戲結束,不玩啦^_^")
Python 學習筆記 5
今天從25章開始 p652 學習 python 的 oop 用 看起來更直觀 class class a def init self,value 建構函式 self.data value def add self,other 運算子過載 return class a self.data other ...
Python學習筆記5
列表與元組的區別 sort sort reverse true 對元素進行排序,預設是公升序,小值在前面,後面那種形式是降序,小值在後面 reverse 反轉列表的順序 count value 返回value的出現次數 index value 返回value第一次出現的位置編號 insert i,v...
Python學習筆記 5
模組 用來從邏輯上組織python 包括變數,函式,類,邏輯等,來實現乙個功能。本質就是乙個python檔案。包 從邏輯上組織模組。必須帶有乙個init.py檔案 匯入方式 import module import module1,module2 from module import 不建議用 fr...