變數不需要定義
temp =
input
("請輸入"
)test =
int(temp)
print
(test)
執行結果
temp =
input
("請輸入"
)test =
int(temp)
if test>5:
print
("比五大"
)else:
print
("比五小"
)
執行結果
注意事項:
if後空格然後寫條件,條件後跟冒號,冒號後按回車自動在下一行縮排。
若條件為真則執行縮排後的語句,若為假則執行else:下一行縮排後的語句
temp =
input
("請輸入"
)test =
int(temp)
while test!=5:
if test>5:
print
("比五大"
)else
:print
("比五小"
) temp =
input
("請重新輸入"
) test =
int(temp)
print
("答對了"
)
執行結果
while同樣需要縮排
import random
secret = randint(1,
10)//代表secret是乙個從1到10之間的隨機整數
根據上面的程式修改
import random
secret = randint(1,
10)//代表secret是乙個從1到10之間的隨機整數
temp =
input
("請輸入"
)test =
int(temp)
while test!=secret:
if test>secret:
print
("比五大"
)else
:print
("比五小"
) temp =
input
("請重新輸入"
) test =
int(temp)
print
("答對了"
)
Python學習(基本函式)
一些基本的函式,總結的還不全面,以後會陸續加入。1.輸出 print hello hello 2.輸入 myname input 返回乙個字串型別 輸入你的名字,比如lee print myname lee3.字串長度 len hello world len myname 4.型別轉換 str 20...
Python學習筆記(十五)函式的基本使用
一 函式的概念及作用 定義函式 封裝 獨立的功能 呼叫函式 享受 封裝 的成果 二 函式的定義 定義函式的格式如下 def 函式名 函式封裝的 def 是英文 define 的縮寫 函式名稱應該能夠表達 函式封裝 的功能,方便後續的呼叫 函式名稱的命名應該 符合識別符號的命名規則 應該先定義函式,再...
python學習筆記 python基本語法補充
我們之前在小插曲這篇博文中提到了中文編碼問題以及其解決方案。這裡再做一些補充。這個中文編碼問題之所以會出現,是python2.x沒有指定編碼形式而導致的。所以我們只需要在檔案開頭加上 coding utf 8 或者 coding utf 8即可。當然了,我也強調了,這是2.x的問題,所以對於3.x是...