記得在語句後加冒號
# fibonacci series:
# the sum of two elements defines the next
a, b =0,
1while a <10:
print
(a,end=
',')
a, b = b, a+b
x =
int(
input
("please enter an integer: "))
if x <0:
x =0print
('negative changed to zero'
)elif x ==0:
print
('zero'
)elif x ==1:
print
('single'
)else
:print
('more'
)
words =
['cat'
,'window'
,'defenestrate'
]for w in words:
print
(w,len
(w))
a =
['mary'
,'had'
,'a'
,'little'
,'lamb'
]for i in
range
(len
(a))
:print
(i, a[i]
)
range(5
,10)5
,6,7
,8,9
range(0
,10,3
)0,3
,6,9
range(-
10,-100,-
30)-10
,-40,
-70
def
f(arg)
:pass
# a function that does nothing (yet)
classc:
pass
# a class with no methods (yet
pass是乙個空操作 — 當它被執行時,什麼都不發生。 它適合當語法上需要一條語句但並不需要執行任何**時用來臨時佔位 python 3 7 4 安裝 opencv的教程
明確一下,我們需要使用python來呼叫opencv中的庫函式,所以需要安裝opencv python。主要需要安裝 1.opencv python 2.numpy 第一步先來安裝opencv python。方法一 可以直接在cmd中使用 pip instal程式設計客棧l opencv pytho...
Python入門 程式控制流程
一 順序結構 按照 的順序從上往下一步一步執行。二 選擇結構 1.簡單if語句 單分支 語法 if 條件 語句說明 a.條件可以是常量,變數或者是表示式 b.在python中,冒號代表 塊的開始 c.在python中,通過縮排區分 塊 d.工作原理 要麼執行,要麼不執行,是否執行取決於條件是否為真 ...
centos7之Python3 74安裝教程
centos7之python3.74安裝 安裝版本 python3.74 系統版本 centos7 系統預設安裝python2.7,保留。安裝 usr bin p 安裝需要root許可權。安裝python3的準備工作 1 安裝編譯python3所用到的相關依賴包 yum install zlib d...