在學(xué)習(xí)W3Cschool python高級(jí)教程之前,大家接觸過許多python語句,在本文中我們將Python一些基本的常用語句做了匯總,并簡(jiǎn)單介紹下這些python常用語句的用途和標(biāo)準(zhǔn)格式,放在一起方便大家參考回顧。
(1)、賦值:創(chuàng)建變量引用值
a,b,c='aa','bb','cc'
(2)、調(diào)用:執(zhí)行函數(shù)
log.write('spam,name')
打印、輸出:調(diào)用打印對(duì)象,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:一般循環(huán)語句
while a > b :
print 'hello'
(6)、pass:占位符(空)
while True:
pass
(7)、break:退出循環(huán)
while True:
if exit:
break
(8)、continue:跳過當(dāng)前循環(huán),循環(huán)繼續(xù)
while True:
if skip:
continue
下面的語句是相對(duì)比較大的程序中會(huì)用到,有關(guān)函數(shù)、類、異常以及模塊,同樣只是簡(jiǎn)單介紹方法用途和格式。
(9)、def:定義函數(shù)和方法
def info(a,b,c=3,*d):
print (a+b+c+d[1])
(10)、return:函數(shù)返回值
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:訪問、導(dǎo)入模塊
import sys
(13)、from:屬性訪問
from sys import stdin
(14)、class:創(chuàng)建對(duì)象,類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:觸發(fā)異常
raise Endsearch (location)
(17)、assert:python 斷言、檢查調(diào)試
assert a>b ,'a roo small'
以上是為有基礎(chǔ)的同學(xué)們做的方法概要,對(duì)于python初學(xué)者,可以點(diǎn)擊語句查看具體操作方法介紹。
更多建議: