python
Naive_boy00
这个作者很懒,什么都没留下…
展开
-
异常处理
try/except捕获多种异常try: ... except ValueError: ... except TypeError: ...捕获所有异常try: ... except: ...清除操作try: ... except.... finally: .... #肯定会执行不管有没有异常原创 2015-10-14 23:32:54 · 351 阅读 · 0 评论 -
数据结构
type命令检查值或变量的类型序列:字符串、元组、列表元组元组是一种不可变的序列,要修改元组就必须创建一个体现更改的新数组>>>items = (-6,'cat',(1,2)) >>>items + items >>>items * 2元组函数x in tup #如果x在元组中就返回True len(tup) #元组tup包含的元素数 tup.count(x) #元素x在tup中出原创 2015-10-14 23:30:34 · 378 阅读 · 0 评论 -
自定义函数、类
自定义函数语法def area(radius): """ 函数说明和实例 #可以通过print(area.__doc__)查看自己编写的函数文档 """ import math return math.pi * radius **2函数中的局部变量只能被函数访问,且函数结束局部变量将自动被删除,要访问外部全局变量需在函数中加关键字global声明 向函数传递参数时,采用引用按引用传递的方式原创 2015-10-14 23:11:13 · 413 阅读 · 0 评论 -
字符串
字符串索引0 1 2 3 4 a p p l e -5 -4 -3 -2 -1for循环访问字符for c in s:字符串切片s.[begin:end]返回从索引begin到end-1的子串测试函数搜索函数s.find(t) #找到返回t在s中的起始位置;否则返回-1 s.rfind(t) #与find相同,但从右往左搜索 s.index(t) #与fi原创 2015-10-14 23:23:50 · 355 阅读 · 0 评论 -
流程控制
逻辑运算==(相等) !=(不等) and(与) or(或) not(非) 短路求值if语句#example1.py if age <= 2 : print('free") elif 2<age<13 : print("child fare") else: print('adult fare')#example2.py reply =原创 2015-10-14 23:04:28 · 289 阅读 · 0 评论 -
算术、字符串与变量
Python入门,算术、字符串与变量原创 2015-10-14 22:58:15 · 439 阅读 · 0 评论