Python语言的一些基本常用语句

Posted zhangjiuzheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 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:命名空间、作用域

 
= ‘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初学者,可以点击语句查看具体操作方法介绍。






以上是关于Python语言的一些基本常用语句的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

MorkDown 常用语法总结

python的程序结构有哪几种

Python基础语法

python调试:pdb基本用法(转)

干货分享!python基础语法你了解吗?