簡單回憶
注釋: 單行 # 多行『』『 』『』
#輸出age =
10print(我今年%d歲了%age)
print
("我的名字是%s,我的國籍是%s"%(
"小張"
,"中國"))
print
("aaa"
,"bbb"
,"ccc"
)#輸出 aaa bbb ccc
#輸出www.baidu.com
print
("hello"
,end="")
#end="\t" end="\n"
#輸入
password =
input
("請輸入密碼"
)print
("您輸入的密碼是:"
,password)
#注意input輸入的是字串
#若需要修改為數字,需要強制型別轉換
a =int
(input
("輸入乙個數字:"))
print
("輸入了乙個數字%d"
%a)
#判斷
注意冒號和縮排,乙個項裡的內容必須對齊
score =
81if score >=
90and score <=
100:
print
("等級a"
)elif score >=
80and score <90:
print
("等級b"
)elif score >=
70and score <80:
print
("等級c"
)else
:print
(等級d)
庫的引入
import random #隨機庫
x = random.randint(0,
2)print
(x)將整個模組(somemodule)匯入,格式為:import somemoule
從某個模組中匯入某個函式:from somemoule imort somefunction
從某個模組中匯入多個函式,格式為:from somemodule import firstfuc,secondfuc
將某個模組中的全部函式匯入,格式為:from somemodule import \*
for迴圈
for i in
range(5
):#輸出0-4
print
(i)#左閉右開
for i in
range(0
,12,3
):#從0開始,到12結束,步進值為3 (不包含12)
#輸出0、3、6、9
print
(i)for i in
range(-
10,-100,-
30):#輸出-10 -40 -70
print
(i)
name=
"jinan"
for i in name:
print
(i,end=
"\t"
)#輸出j i n a n
a =[
"aa"
,"bb"
,"cc"
,"dd"
]for i in
range
(len
(a))
:#注意len的使用
print
(a[i]
)
while迴圈
#while不同於其它語言地方
count =
0while count <5:
print
(count,
"小於5"
) count +=
1else
:print
(count,
"大於或等於5"
)'''輸出
0 小於5
1 小於5
2 小於5
3 小於5
4 小於5
5 大於或等於5'''
break
#結束整個while迴圈
continue
#跳過本次迴圈continue後面語句
pass
#空語句,一般用作佔位語句,不做任何事情
#九九乘法表
for i in
range(1
,10,1
):for j in
range(1
,i+1,1
):print
("%d*%d=%d"
%(i,j,i*j)
,end=
" ")
print
("\n"
)
python 輸入輸出 條件判斷 迴圈
1 條件判斷score int input 請輸入學生成績 if score 100 and score 0 print 請輸入正確的成績 elif score 100 and score 90 print 優秀 elif score 90 and score 80 print 良好 elif sc...
python判斷迴圈 python中迴圈與判斷
1.判斷 if 條件表示式 1 條件表示式為布林值,如 is 省略的寫法,變數存在,執行if 後面的 if a xx 當a 為true時執行if 後面的 為false不會執行 a 0,a 0.0,a a a a none,a a 空物件 都為false,if 後面的 都不會執行 if elif.el...
python判斷迴圈 Python判斷與迴圈語句
python判斷與迴圈語句 1 if elif else age 17 if age 18 and age 100 print 我成年了 elif age 100 print 長壽寶寶?else print 我還是個寶寶?控制台列印結果 我還是個寶寶?2 while迴圈 age 0 while ag...