Python的__builtin__模块中的一些要点知识

作者:goldensun 时间:2022-10-08 01:46:23 

1.isinstance函数:除了以一个类型作为参数,还可以以一个类型元组作为参数。


isinstance(obj,basestring)===isinstance(obj,(str,unicode))

2.getattr函数:可以给一个默认值,以免触发错误。


writte=getattr(obj,'write',sys.stdout.write)

3.type函数:即可以得到一个对象的类型,也可以直接由它创建一个新类型:


>>> Point=type('Point',(object,),{'x':0,'y':0})
>>> p=Point()
>>> p.x,p.y
(0, 0)
>>> p=Point(3,8)
Traceback (most recent call last):
File "<pyshell#55>", line 1, in <module>
p=Point(3,8)
TypeError: object() takes no parameters
>>> pprint.pprint(dir(Point))
['__class__',
'__delattr__',
'__dict__',
'__doc__',
'__format__',
'__getattribute__',
'__hash__',
'__init__',
'__module__',
'__new__',
'__reduce__',
'__reduce_ex__',
'__repr__',
'__setattr__',
'__sizeof__',
'__str__',
'__subclasshook__',
'__weakref__',
'x',
'y']
>>> p.name='source point'
>>> p.name
'source point'
>>> pprint.pprint(dir(p))
['__class__',
'__delattr__',
'__dict__',
'__doc__',
'__format__',
'__getattribute__',
'__hash__',
'__init__',
'__module__',
'__new__',
'__reduce__',
'__reduce_ex__',
'__repr__',
'__setattr__',
'__sizeof__',
'__str__',
'__subclasshook__',
'__weakref__',
'name',
'x',
'y']
>>> def tostr(self):
return '(%s,%s)'%(self.x,self.y)
>>> Point.__str__=tostr
>>> print p
(0,0)
>>> def init(self,x,y):
self.x,self.y=x,y

>>> Point.__init__=init
>>> p2=Point(6,8)
>>> print p2
(6,8)
>>>

4.issubclass(bool,int)==True

5.numbers.Number是所有数字类型的基类

6.type(None)==NoneType,None是一个常量

7.iter函数除了iter(object)形式,还有iter(callable,sentinel)也是返回一个iterator对象


>>> def getrand():
import random
return random.randint(1,100)
>>> for i in iter(getrand,50):print i,#获取第一次得到50之前的所有1-100的随机数
32 19 82 28 30 41 100 39 71 29 45 30 94 77 62 26 25 19 82 20 55 20 43 73
>>> for i in iter(getrand,50):print i,#获取第一次得到50之前的所有1-100的随机数
22 54 14 25 60 65 16 80 61 5 48 61 2 30 90 98 70 10 55 45 23 72 87 39 70 3 84 85
>>>

8.BaseException是一切exceptions的基类,Exception只是一切不exit的exceptions的基类

9.locals/globals/vars/dir:

[1]locals/globals很简单,是相对于当前作用域的本地/全局对象dict;

[2]vars()==locals(),vars(obj)==obj.__dict__

[3]没有参数,set(dir())==set(locals().keys());if hasattr(obj,'__dir__')=>dir(obj)==obj.__dir__();否则,如果obj是模块对象,dir(obj)返回的是模块的所有属性;如果obj是类对象,dir(obj)返回的是类的所有属性,然后是从基类继承来的属性;如果obj是实例对象,dir(obj)返回的是实例对象专有的属性、其所属类的属性、其所属类基类继承来的属性。【对类对象的任何修改,必将反映到其实例对象上;对基类的任何修改,也必将反映到派生类上。当然,属性遮蔽的情况除外。】

10.enumerate函数:enumerate(obj,[start]),如果定义了start,则序数将从start开始,而不是从默认的零开始。


>>> for i,name in enumerate(['C','C++','CSharp','Java','Python'],1):
print '%d.%s'%(i,name)
1.C
2.C++
3.CSharp
4.Java
5.Python
>>>
标签:Python
0
投稿

猜你喜欢

  • python一行sql太长折成多行并且有多个参数的方法

    2022-06-21 03:47:04
  • 浅谈慢SQL优化之索引的作用

    2024-01-24 20:31:54
  • python 实时得到cpu和内存的使用情况方法

    2023-10-05 20:03:24
  • Python OpenCV超详细讲解透视变换的实现

    2021-08-02 21:19:48
  • Python实现随机森林回归与各自变量重要性分析与排序

    2023-05-04 05:52:21
  • 解决Django部署设置Debug=False时xadmin后台管理系统样式丢失

    2022-05-09 00:33:57
  • asp下实现代码的“运行代码”“复制代码”“保存代码”功能源码

    2011-04-14 10:39:00
  • Python Django框架中表单的用法详解

    2021-11-06 04:24:41
  • JS实现用户管理系统

    2023-08-29 04:51:20
  • Python urlopen 使用小示例

    2022-08-23 19:54:55
  • Python:format格式化字符串详解

    2021-02-11 19:23:58
  • SQL Server中使用DTS设计器进行数据转移

    2009-01-08 16:15:00
  • Tensorflow 卷积的梯度反向传播过程

    2021-02-05 09:15:29
  • 在CentOS上配置Nginx+Gunicorn+Python+Flask环境的教程

    2021-09-04 07:31:23
  • Oracle表空间数据库文件收缩案例解析

    2024-01-13 02:07:34
  • 一百行python代码将图片转成字符画

    2023-05-06 05:49:15
  • Python验证码识别的方法

    2023-05-30 10:22:39
  • Windows10下 python3.7 安装 facenet的教程

    2022-06-21 11:17:01
  • 一文让你秒懂精通pip并快速体验深度学习应用【建议收藏】

    2022-07-08 22:27:56
  • Dreamweaver使用技巧之如何巧用DW4文件库更新网站

    2010-10-20 20:07:00
  • asp之家 网络编程 m.aspxhome.com