Python是基本語句


在學習python高階教學之前,大家接觸過許多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)、pass:佔位符(空)

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初學者,可以點擊語句查看具體操作方法介紹。