在我們學習python的過程中,會遇到一些我們常遇到的語句,下面我將這些語句盤點一下,方便大家記憶。
相關推薦:《python影片》
#python常用語句:
(1)、賦值:建立變數參考值
a,b,c='aa','bb','cc'
(2)、呼叫:執行函數
log.write('spam,name')
列印、輸出:呼叫列印對象,print 語句
print ('abc')
(3)if、elif、else:選擇條件語句,if語句、else與elif語句
if 'iplaypython' in text: print (text)
(4)for、else:序列迭代
for x in list: print x
(5)、while 、else:一般循環語句
while a > b : print 'hello'
(6)、通過:佔位符(空)
while True: pass
(7)、break:退出循環
while True: if exit: break
(8) 、continue:跳過目前循環,循環繼續
while True: if skip: continue
下面的語句是相對比較大的程式中會用到,有關函數、類別、異常以及模組,同樣只是簡單介紹方法用途和格式。
(9)、def:定義函數與方法
def info(a,b,c=3,*d): print (a+b+c+d[1])
(10)、return:函數傳回值
def info(a,b,c=3,*d): return a+b+c+d[1]
(11)、python global:命名空間、作用域
x = 'a' def function(): global x ; x = 'b'
(12)、import:存取、導入模組
import sys
(13)、from:屬性存取
from sys import stdin
(14)、class:創建對象,類別class定義方法
class Person: def setName(self,name): self.name = name def getName(self): return self.name def greet(self): print 'hello,%s' % self.nameclass Person: def setName(self,name): self.name = name def getName(self): return self.name def greet(self): print 'hello,%s' % self.names
(15)、try、except、finally:python 捕獲異常
try: action() except: print ('action error')
(16)、raise:觸發異常
raise Endsearch (location)
(17)、assert:python 斷言、檢查調試
assert a>b ,'a roo small'
以上是python常見語句匯總的詳細內容。更多資訊請關注PHP中文網其他相關文章!