摘要: ###super 也是 新式类的 特征。 ###h函数的重构 阅读全文
posted @ 2018-03-21 16:53 滕虎 阅读(101) 评论(0) 推荐(0) 编辑
摘要: random import random print (random.random()) #0.6445010863311293 #random.random()用于生成一个0到1的随机符点数: 0 <= n < 1.0 print (random.randint(1,7)) #4 #random. 阅读全文
posted @ 2018-03-19 14:54 滕虎 阅读(101) 评论(0) 推荐(0) 编辑
摘要: ##在 python 里 转换的语言为json 但是只能处理简单的 列表 字典等 pickle ### 转换后 为 二进制 别的 和 json 是一样的 pickle 只能在Pytho 本语言使用 阅读全文
posted @ 2018-03-16 17:05 滕虎 阅读(86) 评论(0) 推荐(0) 编辑
摘要: abs() 取绝对值 all() 列表中 有0 就是 F, any () 列表为空是 F bin() 数字转换成二进制 >>> chr(98)'b'>>> >>> ord('b')98>>> >>> a = "for i in range(10):print i" >>> exec(a)0123 . 阅读全文
posted @ 2018-03-16 15:04 滕虎 阅读(102) 评论(0) 推荐(0) 编辑
摘要: >>> from collections import Iterable ###导入可迭代判断莫快递 >>> isinstance([],Iterable)True>>> >>> >>> isinstance({},Iterable)True>>> isinstance(100,Iterable) 阅读全文
posted @ 2018-03-16 10:46 滕虎 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 列表生成式 执行效率高 简洁 生成器 :当你调用的时候还会给出结果 从而大大提高了调度性能 <generator object <genexpr> at 0x000000000256D3A8> ### 返回的只是一个内存地址 方法 b.next () python 3.x 是 b.__next__( 阅读全文
posted @ 2018-03-15 11:45 滕虎 阅读(120) 评论(0) 推荐(0) 编辑
摘要: import time def fun(bian): ###装饰器 def fun_1(): ##定义 start_time = time.time() bian() stop_time = time.time() print('it is run %s'%(stop_time-start_time 阅读全文
posted @ 2018-03-13 16:06 滕虎 阅读(88) 评论(0) 推荐(0) 编辑
摘要: ## abs python 内置的函数 求绝对值 阅读全文
posted @ 2018-03-13 11:09 滕虎 阅读(97) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-03-13 10:47 滕虎 阅读(84) 评论(0) 推荐(0) 编辑
摘要: # * 号可以有多个参数 *名字也可以自定义 规范 是 *args 按规矩来 *args 接收多个位置参数 转换成元组 **kwargs 接收N个关键字参数 转换成 字典格式。 位置参数一定不能写在关键字参数后面 同理 局部变量 声明全局 global ### 相同变量名。。。局部 在子程序内起作用 阅读全文
posted @ 2018-03-12 17:27 滕虎 阅读(160) 评论(0) 推荐(0) 编辑