一、内置函数:

     Python给你提供的,拿来直接用的函数,比如print、input等等,就是内置函数。

     截止到Python版本3.6.2,现在Python一共为我们提供了68个内置函数。

     内置函数    
abs() dict() help() min() setattr()
all()  dir()  hex()  next()  slice() 
any()  divmod()  id()  object()  sorted() 
ascii() enumerate()  input()  oct()  staticmethod() 
bin()  eval()  int()  open()  str() 
bool()  exec()  isinstance()  ord()  sum() 
bytearray()  filter()  issubclass()  pow()  super() 
bytes() float()  iter()  print()  tuple() 
callable() format()  len()  property()  type() 
chr() frozenset()  list()  range()  vars() 
classmethod()  getattr() locals()  repr()  zip() 
compile()  globals() map()  reversed()  __import__() 
complex()  hasattr()  max()  round()  
delattr() hash()  memoryview()  set()  

   1、作用域相关:

     ***** locals:函数会以字典的类型返回当前位置的全部局部变量。

     ***** globals:函数以字典的类型返回全部全局变量。

  1. a = 1
  2. b = 2
  3. print(locals())
  4. print(globals())
  5. # 这两个一样,因为是在全局执行的。
  6.  
  7. ##########################
  8.  
  9. def func(argv):
  10. c = 2
  11. print(locals())
  12. print(globals())
  13. func(3)
  14.  
  15. #这两个不一样,locals() {'argv': 3, 'c': 2}
  16. #globals() {'__doc__': None, '__builtins__': <module 'builtins' (built-in)>, '__cached__': None, '__loader__': <_frozen_importlib_external.SourceFileLoader object at 0x0000024409148978>, '__spec__': None, '__file__': 'D:/lnh.python/.../内置函数.py', 'func': <function func at 0x0000024408CF90D0>, '__name__': '__main__', '__package__': None}

locals和globals

   2、字符串类型代码的执行:eval、exec、compile

     *** eval:执行字符串类型的代码,并返回最终结果。

  1. eval('2 + 2') #
  2.  
  3. n=81
  4. eval("n + 4") #
  5.  
  6. eval('print(666)') #

eval

     *** exec:执行字符串类型的代码。

  1. s = '''
  2. for i in [1,2,3]:
  3. print(i)
  4. '''
  5. exec(s)

exec

     ** compile:将字符串类型的代码编译。代码对象能够通过exec语句来执行或者eval()进行求值。

       注:有返回值的字符串形式的代码用eval,没有返回值的字符串形式的代码用exec,一般不用compile。

  1. '''
  2. 参数说明:   
  3.  
  4. 1. 参数source:字符串或者AST(Abstract Syntax Trees)对象。即需要动态执行的代码段。  
  5.  
  6. 2. 参数 filename:代码文件名称,如果不是从文件读取代码则传递一些可辨认的值。当传入了source参数时,filename参数传入空字符即可。  
  7.  
  8. 3. 参数model:指定编译代码的种类,可以指定为 ‘exec’,’eval’,’single’。当source中包含流程语句时,model应指定为‘exec’;当source中只包含一个简单的求值表达式,model应指定为‘eval’;当source中包含了交互式命令语句,model应指定为'single'。
  9. '''
  10. >>> #流程语句使用exec
  11. >>> code1 = 'for i in range(0,10): print (i)'
  12. >>> compile1 = compile(code1,'','exec')
  13. >>> exec (compile1)
  14.  
  15. >>> #简单求值表达式用eval
  16. >>> code2 = '1 + 2 + 3 + 4'
  17. >>> compile2 = compile(code2,'','eval')
  18. >>> eval(compile2)
  19.  
  20. >>> #交互语句用single
  21. >>> code3 = 'name = input("please input your name:")'
  22. >>> compile3 = compile(code3,'','single')
  23. >>> name #执行前name变量不存在
  24. Traceback (most recent call last):
  25. File "<pyshell#29>", line 1, in <module>
  26. name
  27. NameError: name 'name' is not defined
  28. >>> exec(compile3) #执行时显示交互命令,提示输入
  29. please input your name:'pythoner'
  30. >>> name #执行后name变量有值
  31. "'pythoner'"

compile

    3、输入输出相关:input、print

     ***** input:函数接收一个标准输入数据,返回为string类型。

     ***** print:打印输出。

  1. ''' 源码分析
  2. def print(self, *args, sep=' ', end='\n', file=None): # known special case of print
  3. """
  4. print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
  5. file: 默认是输出到屏幕,如果设置为文件句柄,输出到文件
  6. sep: 打印多个值之间的分隔符,默认为空格
  7. end: 每一次打印的结尾,默认为换行符
  8. flush: 立即把内容输出到流文件,不作缓存
  9. """
  10. '''
  11.  
  12. print(111,222,333,sep='*') # 111*222*333
  13.  
  14. print(111,end='')
  15. print(222) #两行的结果 111222
  16.  
  17. f = open('log','w',encoding='utf-8')
  18. print('写入文件',file=f,flush=True)

print

    4、内存相关:hash、id

     *** hash:获取一个对象(可哈希对象:int、str、bool、tuple)的哈希值

  1. print(hash(12322))
  2. print(hash(''))
  3. print(hash('arg'))
  4. print(hash('alex'))
  5. print(hash(True))
  6. print(hash(False))
  7. print(hash((1,2,3)))
  8.  
  9. '''
  10. -2996001552409009098
  11. -4637515981888139739
  12. 1
  13. 2528502973977326415
  14. '''

hash

     *** id:用于获取对象的内存地址。

  1. print(id(123)) #
  2. print(id('abc')) #

id

    5、文件操作相关:open

     ****** open:函数用于打开一个文件,创建一个file对象,相关的方法才可以调用它进行读写。

    6、模块相关:__imoort__

     *** __impot__:函数用于动态加载类和函数。

    7、帮助:help

     ** help:函数用于查看函数或模块用途的详细说明。

  1. print(help(list))
  2. Help on class list in module builtins:
  3.  
  4. class list(object)
  5. | list() -> new empty list
  6. | list(iterable) -> new list initialized from iterable's items
  7. |
  8. | Methods defined here:
  9. |
  10. | __add__(self, value, /)
  11. | Return self+value.
  12. |
  13. | __contains__(self, key, /)
  14. | Return key in self.
  15. |
  16. | __delitem__(self, key, /)
  17. | Delete self[key].
  18. |
  19. | __eq__(self, value, /)
  20. | Return self==value.
  21. |
  22. | __ge__(self, value, /)
  23. | Return self>=value.
  24. |
  25. | __getattribute__(self, name, /)
  26. | Return getattr(self, name).
  27. |
  28. | __getitem__(...)
  29. | x.__getitem__(y) <==> x[y]
  30. |
  31. | __gt__(self, value, /)
  32. | Return self>value.
  33. |
  34. | __iadd__(self, value, /)
  35. | Implement self+=value.
  36. |
  37. | __imul__(self, value, /)
  38. | Implement self*=value.
  39. |
  40. | __init__(self, /, *args, **kwargs)
  41. | Initialize self. See help(type(self)) for accurate signature.
  42. |
  43. | __iter__(self, /)
  44. | Implement iter(self).
  45. |
  46. | __le__(self, value, /)
  47. | Return self<=value.
  48. |
  49. | __len__(self, /)
  50. | Return len(self).
  51. |
  52. | __lt__(self, value, /)
  53. | Return self<value.
  54. |
  55. | __mul__(self, value, /)
  56. | Return self*value.n
  57. |
  58. | __ne__(self, value, /)
  59. | Return self!=value.
  60. |
  61. | __new__(*args, **kwargs) from builtins.type
  62. | Create and return a new object. See help(type) for accurate signature.
  63. |
  64. | __repr__(self, /)
  65. | Return repr(self).
  66. |
  67. | __reversed__(...)
  68. | L.__reversed__() -- return a reverse iterator over the list
  69. |
  70. | __rmul__(self, value, /)
  71. | Return self*value.
  72. |
  73. | __setitem__(self, key, value, /)
  74. | Set self[key] to value.
  75. |
  76. | __sizeof__(...)
  77. | L.__sizeof__() -- size of L in memory, in bytes
  78. |
  79. | append(...)
  80. | L.append(object) -> None -- append object to end
  81. |
  82. | clear(...)
  83. | L.clear() -> None -- remove all items from L
  84. |
  85. | copy(...)
  86. | L.copy() -> list -- a shallow copy of L
  87. |
  88. | count(...)
  89. | L.count(value) -> integer -- return number of occurrences of value
  90. |
  91. | extend(...)
  92. | L.extend(iterable) -> None -- extend list by appending elements from the iterable
  93. |
  94. | index(...)
  95. | L.index(value, [start, [stop]]) -> integer -- return first index of value.
  96. | Raises ValueError if the value is not present.
  97. |
  98. | insert(...)
  99. | L.insert(index, object) -- insert object before index
  100. |
  101. | pop(...)
  102. | L.pop([index]) -> item -- remove and return item at index (default last).
  103. | Raises IndexError if list is empty or index is out of range.
  104. |
  105. | remove(...)
  106. | L.remove(value) -> None -- remove first occurrence of value.
  107. | Raises ValueError if the value is not present.
  108. |
  109. | reverse(...)
  110. | L.reverse() -- reverse *IN PLACE*
  111. |
  112. | sort(...)
  113. | L.sort(key=None, reverse=False) -> None -- stable sort *IN PLACE*
  114. |
  115. | ----------------------------------------------------------------------
  116. | Data and other attributes defined here:
  117. |
  118. | __hash__ = None
  119.  
  120. None
  121.  
  122. Process finished with exit code 0

help

    8、调用相关:callable

     *** callable:函数用于检查一个对象是否是可调用的。如果返回True、object仍然可能调用失败;但如果返回False,调用对象ojbect绝对不会成功。

  1. >>>callable(0)
  2. False
  3. >>> callable("runoob")
  4. False
  5.  
  6. >>> def add(a, b):
  7. ... return a + b
  8. ...
  9. >>> callable(add) # 函数返回 True
  10. True
  11. >>> class A: # 类
  12. ... def method(self):
  13. ... return 0
  14. ...
  15. >>> callable(A) # 类返回 True
  16. True
  17. >>> a = A()
  18. >>> callable(a) # 没有实现 __call__, 返回 False
  19. False
  20. >>> class B:
  21. ... def __call__(self):
  22. ... return 0
  23. ...
  24. >>> callable(B)
  25. True
  26. >>> b = B()
  27. >>> callable(b) # 实现 __call__, 返回 True

callable

    9、查看内置属性:dir

     *** dir:函数不带参数时,返回当前范围内的变量、方法和定义的类型列表;带参数时,返回参数的属性、方法列表。如果参数包含方法__dir__(),该方法将被调用。如果参数不含__dir__(),该方法将最大限度的收集参数信息。

  1. >>>dir() # 获得当前模块的属性列表
  2. ['__builtins__', '__doc__', '__name__', '__package__', 'arr', 'myslice']
  3. >>> dir([ ]) # 查看列表的方法
  4. ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__', '__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__', '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__', 'append', 'count', 'extend', 'index', 'insert', 'pop', 'remove', 'reverse', 'sort']

dir

    10、迭代器生成器相关:range、next、iter

     *** range:函数可创建一个整数对象,一般用在for循环中。

     *** next:内部实际使用了__next__方法,返回迭代器的下一个项目。

  1. # 首先获得Iterator对象:
  2. it = iter([1, 2, 3, 4, 5])
  3. # 循环:
  4. while True:
  5. try:
  6. # 获得下一个值:
  7. x = next(it)
  8. print(x)
  9. except StopIteration:
  10. # 遇到StopIteration就退出循环
  11. break

next

     *** iter:函数用来生成迭代器(将一个可迭代对象,生成迭代器)。

  1. from collections import Iterable
  2. from collections import Iterator
  3. l = [1,2,3]
  4. print(isinstance(l,Iterable)) # True
  5. print(isinstance(l,Iterator)) # False
  6.  
  7. l1 = iter(l)
  8. print(isinstance(l1,Iterable)) # True
  9. print(isinstance(l1,Iterator)) # True

iter

    11、基础数据类型相关:

     数据类型(4):

     *** bool:用于将给定参数转换为布尔类型,如果没有参数,返回False。

     *** int:函数用于将一个字符串或数字转换为整数。

  1. print(int()) #
  2.  
  3. print(int('')) #
  4.  
  5. print(int(3.6)) # 3 取整
  6.  
  7. print(int('',base=2)) # 将2进制的 0100 转化成十进制。结果为 4

int

     *** float:函数用于将整数和字符串转换成浮点数。

     *** complex:函数用于创建一个值为 real + imag * j 的复数或者转化一个字符串或数为复数。如果第一个参数为字符串,则不需要指定第二个参数。

  1. >>>complex(1, 2)
  2. (1 + 2j)
  3.  
  4. >>> complex(1) # 数字
  5. (1 + 0j)
  6.  
  7. >>> complex("") # 当做字符串处理
  8. (1 + 0j)
  9.  
  10. # 注意:这个地方在"+"号两边不能有空格,也就是不能写成"1 + 2j",应该是"1+2j",否则会报错
  11. >>> complex("1+2j")
  12. (1 + 2j)

complex

    进制转换(3):

     ** bin:将十进制转换成二进制并返回。

     ** oct:将十进制转化成八进制字符串并返回。

     ** hex:将十进制转化成十六进制字符串并返回。

  1. print(bin(10),type(bin(10))) # 0b1010 <class 'str'> 0b二进制
  2. print(oct(10),type(oct(10))) # 0o12 <class 'str'> 0o八进制
  3. print(hex(10),type(hex(10))) # 0xa <class 'str'> 0x十六进制

进制转换

     

    数学运算(7):

     **** abs:函数返回数字的绝对值。

     **** divmod:计算除数与被除数的结果,返回一个包含商和余数的元祖(a // b, a % b)。

     *** round:保留浮点数的小数位数,默认保留整数(四舍五入)。

     ** pow:求 x ** y 次幂。(三个参数为 x ** y 的结果对 z 取余)。

  1. print(abs(-5)) #
  2.  
  3. print(divmod(7,2)) # (3, 1)
  4.  
  5. print(round(7/3,2)) # 2.33
  6. print(round(7/3)) #
  7. print(round(3.32567,3)) # 3.326
  8.  
  9. print(pow(2,3)) # 两个参数为2**3次幂
  10. print(pow(2,3,3)) # 三个参数为2**3次幂,对3取余。

abs、divmod、round、pow

     ***** sum:对可迭代对象进行求和计算(可设置初始值)。

     ***** min:返回可迭代对象的最小值(可加 key , key 为函数名,通过函数的规则,返回最小值)。

     ***** max:返回可迭代对象的最大值(可加 key , key 为函数名,通过函数的规则,返回最大值)。

  1. print(sum([1,2,3]))
  2. print(sum((1,2,3),100))
  3.  
  4. print(min([1,2,3])) # 返回此序列最小值
  5.  
  6. ret = min([1,2,-5,],key=abs) # 按照绝对值的大小,返回此序列最小值
  7. print(ret)
  8.  
  9. dic = {'a':3,'b':2,'c':1}
  10. print(min(dic,key=lambda x:dic[x]))
  11. # x为dic的key,lambda的返回值(即dic的值进行比较)返回最小的值对应的键
  12.  
  13. print(max([1,2,3])) # 返回此序列最大值
  14.  
  15. ret = max([1,2,-5,],key=abs) # 按照绝对值的大小,返回此序列最大值
  16. print(ret)
  17.  
  18. dic = {'a':3,'b':2,'c':1}
  19. print(max(dic,key=lambda x:dic[x]))
  20. # x为dic的key,lambda的返回值(即dic的值进行比较)返回最大的值对应的键
  21.  
  22. [('alex',1000),('太白',18),('wusir',500)]
  23. 求出年龄最小的那个元组
  24.  
  25. # 第一种:
  26. ls = [('alex',1000),('太白',18),('wusir',500)]
  27. min1 = min([i[1] for i in ls])
  28. for i in ls:
  29. if i[1]==min1:
  30. print(i)
  31.  
  32. # 第二种:
  33. def func(x):
  34. return x[1] # 1000 18 500
  35. print(min([('alex',1000),('太白',18),('wusir',500)],key=func))
  36.  
  37. # 1,他会将iterable的每一个元素当做函数的参数传进去。
  38. # 2,他会按照返回值去比较大小。
  39. # 3,返回的是 遍历的元素 x.
  40.  
  41. dic = {'a':3,'b':2,'c':1}
  42.  
  43. # 第一种:
  44. def func1(x):
  45. return dic[x]
  46. print(min(dic,key=func1))
  47.  
  48. # 第二种:
  49. def func2(x):
  50. return x[1]
  51. print(min(dic.items(),key=func2))

sum、min、max

《Python》 内置函数的更多相关文章

  1. python内置函数

    python内置函数 官方文档:点击 在这里我只列举一些常见的内置函数用法 1.abs()[求数字的绝对值] >>> abs(-13) 13 2.all() 判断所有集合元素都为真的 ...

  2. python 内置函数和函数装饰器

    python内置函数 1.数学相关 abs(x) 取x绝对值 divmode(x,y) 取x除以y的商和余数,常用做分页,返回商和余数组成一个元组 pow(x,y[,z]) 取x的y次方 ,等同于x ...

  3. Python基础篇【第2篇】: Python内置函数(一)

    Python内置函数 lambda lambda表达式相当于函数体为单个return语句的普通函数的匿名函数.请注意,lambda语法并没有使用return关键字.开发者可以在任何可以使用函数引用的位 ...

  4. [python基础知识]python内置函数map/reduce/filter

    python内置函数map/reduce/filter 这三个函数用的顺手了,很cool. filter()函数:filter函数相当于过滤,调用一个bool_func(只返回bool类型数据的方法) ...

  5. Python内置函数进制转换的用法

    使用Python内置函数:bin().oct().int().hex()可实现进制转换. 先看Python官方文档中对这几个内置函数的描述: bin(x)Convert an integer numb ...

  6. Python内置函数(12)——str

    英文文档: class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string  ...

  7. Python内置函数(61)——str

    英文文档: class str(object='') class str(object=b'', encoding='utf-8', errors='strict') Return a string ...

  8. 那些年,很多人没看懂的Python内置函数

    Python之所以特别的简单就是因为有很多的内置函数是在你的程序"运行之前"就已经帮你运行好了,所以,可以用这个的特性简化很多的步骤.这也是让Python语言变得特别的简单的原因之 ...

  9. Python 内置函数笔记

    其中有几个方法没怎么用过, 所以没整理到 Python内置函数 abs(a) 返回a的绝对值.该参数可以是整数或浮点数.如果参数是一个复数,则返回其大小 all(a) 如果元组.列表里面的所有元素都非 ...

  10. 【转】实习小记-python 内置函数__eq__函数引发的探索

    [转]实习小记-python 内置函数__eq__函数引发的探索 乱写__eq__会发生啥?请看代码.. >>> class A: ... def __eq__(self, othe ...

随机推荐

  1. SQL 收集

    1.union CREATE TABLE dbo.#testTab ( Id int NOT NULL ) insert into #testTab values(); insert into #te ...

  2. React Native控件之Switch开关

    这个组件很简单 主要有两个属性:开.关....呵呵哒,,, import React,{Component}from 'react'; import { AppRegistry, StyleSheet ...

  3. python 获取格式化时间

    #!/usr/bin/python # -*- coding: UTF- -*- import time localtime = time.asctime( time.localtime(time.t ...

  4. c++ 多继承 公有,私有,保护

    昨天学习三种继承方式,有些比喻十分形象,特此分享. 首先说明几个术语: 1.基类 基类比起它的继承类是个更加抽象的概念,所描述的范围更大.所以可以看到有些抽象类,他们设计出来就是作为基类所存在的(有些 ...

  5. ssh 连接不同无线网且IP以及用户名都相同

    问题现场及解析 用OpenSSH的人都知ssh会把你每个你访问过计算机的公钥(public key)都记录在~/.ssh/known_hosts. 当下次访问相同计算机时,OpenSSH会核对公钥. ...

  6. 如何 Graphics 对象设置背景色

    用 Clear 方法可以轻松地给 Graphics 对象设置背景色. using (Bitmap bmp = new Bitmap(width, height)){    using (Graphic ...

  7. python sort、sorted

    1. (1).sorted()方法返回一个新列表(默认升序). list.sort() (2).另一个不同:list.sort()方法仅被定义在list中,sorted()方法对所有的可迭代序列都有效 ...

  8. Python使用base64编码的问题

    有的时候,在base64解码的时候,由于字节问题出现解码错误.解决的办法就是不足原base64子串的长度: def decode_base64(data): """ De ...

  9. python怎样压缩和解压缩ZIP文件

    https://zhidao.baidu.com/question/1498409764366387259.html

  10. android--------自定义Dialog之信息提示

    对话框对于应用也是必不可少的一个组件,在Android中也不例外,对话框对于一些提示重要信息,或者一些需要用户额外交互的一些内容很有帮助. 自定义Dialog步骤: 1.主要创建Java类,并继承Di ...