摘要:官方介绍内置函数详解返回数字的绝对值,参数可以是整数或浮点数,如果参数是复数,则返回其大小。返回对象的命名属性的值,必须是字符串,如果字符串是对象属性之一的名称,则结果是该属性的值。
The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.
Built-in Functions | ||||||
---|---|---|---|---|---|---|
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() |
内置函数详解官方介绍:https://docs.python.org/3/lib...
abs(x)
返回数字的绝对值,参数可以是整数或浮点数,如果参数是复数,则返回其大小。
# 如果参数是复数,则返回其大小。 >>> abs(-25) 25 >>> abs(25) 25
all(iterable)
all()会循环括号内的每一个元素,如果括号内的所有元素都是真的,或者如果iterable为空,则返回True,如果有一个为假的那么就返回False
>>> all([]) True >>> all([1,2,3]) True >>> all([1,2,""]) False # 如果有一个为假,则都为假 >>> all([1,2,None]) False
假的参数有:False、0、None、""、[]、()、{}等,查看一个元素是否为假可以使用bool进行查看。
any(iterable)
循环元素,如果有一个元素为真,那么就返回True,否则就返回False
>>> any([0,1]) True >>> any([0]) False
ascii(object)
在对象的类中寻找__repr__方法,获取返回值
>>> class Foo: ... def __repr_(self): ... return "hello" ... >>> obj = Foo() >>> r = ascii(obj) >>> print(r) # 返回的是一个可迭代的对象 <__main__.Foo object at 0x000001FDEE13D320>
bin(x)
将整数x转换为二进制字符串,如果x不为Python中int类型,x必须包含方法__index__()并且返回值为integer
# 返回一个整数的二进制 >>> bin(999) "0b1111100111"
# 非整型的情况,必须包含__index__()方法切返回值为integer的类型 >>> class myType: ... def __index__(self): ... return 35 ... >>> myvar = myType() >>> bin(myvar) "0b100011"
bool([x])
查看一个元素的布尔值,非真即假
>>> bool(0) False >>> bool(1) True >>> bool([1]) True >>> bool([10]) True
bytearray([source [, encoding [, errors]]])
返回一个byte数组,Bytearray类型是一个可变的序列,并且序列中的元素的取值范围为 [0 ,255]。
source参数:
如果source为整数,则返回一个长度为source的初始化数组;
如果source为字符串,则按照指定的encoding将字符串转换为字节序列;
如果source为可迭代类型,则元素必须为[0 ,255]中的整数;
如果source为与buffer接口一致的对象,则此对象也可以被用于初始化bytearray.。
>>> bytearray(3) bytearray(b"x00x00x00")
bytes([source[, encoding[, errors]]])
>>> bytes("asdasd",encoding="utf-8") b"asdasd"
callable(object)
返回一个对象是否可以被执行
>>> def func(): ... return 123 ... >>> callable(func) True >>> func = 123 >>> callable(func) False
chr(i)
返回一个数字在ASCII编码中对应的字符,取值范围256个
>>> chr(66) "B" >>> chr(5) "x05" >>> chr(55) "7" >>> chr(255) "xff" >>> chr(25) "x19" >>> chr(65) "A"
classmethod(function)
返回函数的类方法
compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1)
把字符串编译成python可执行的代码
>>> str = "for i in range(0,10): print(i)" >>> c = compile(str,"","exec") >>> exec(c) 0 1 2 3 4 5 6 7 8 9
complex([real[, imag]])
创建一个值为real + imag * j的复数或者转化一个字符串或数为复数。如果第一个参数为字符串,则不需要指定第二个参数
>>> complex(1, 2) (1+2j) # 数字 >>> complex(1) (1+0j) # 当做字符串处理 >>> complex("1") (1+0j) # 注意:这个地方在“+”号两边不能有空格,也就是不能写成"1 + 2j",应该是"1+2j",否则会报错 >>> complex("1+2j") (1+2j)
delattr(object, name)
删除对象的属性值
>>> class cls: ... @classmethod ... def echo(self): ... print("CLS") ... >>> cls.echo() CLS >>> delattr(cls, "echo") >>> cls.echo() Traceback (most recent call last): File "", line 1, in AttributeError: type object "cls" has no attribute "echo"
dict(**kwarg)
创建一个数据类型为字典
>>> dic = dict({"k1":"123","k2":"456"}) >>> dic {"k1": "123", "k2": "456"}
dir([object])
返回一个对象中中的所有方法
>>> dir(str) ["__add__", "__class__", "__contains__", "__delattr__", "__dir__", "__doc__", "__eq__", "__format__", "__ge__", "__getattribute__", "__getitem__", "__getnewargs__", "__gt__", "__hash__", "__init__", "__iter__", "__le__", "__len__", "__lt__", "__mod__", "__mul__", "__ne__", "__new__", "__reduce__", "__reduce\_ex__", "__repr__", "__rmod__", "__rmul__", "__setattr__", "__sizeof__", "__str__", "__subclasshook__", "capitalize", "casefold", "center", "count", "encode", "endswith", "expandtabs", "find", "format", "format_map", "index", "isalnum", "isalpha", "isdecimal", "isdigit", "isidentifier", "islower", "isnumeric", "isprintable", "isspace", "istitle", "isupper", "join", "ljust", "lower", "lstrip", "maketrans", "partition", "replace", "rfind", "rindex", "rjust", "rpartition", "rsplit", "rstrip", "split", "splitlines", "startswith", "strip", "swapcase", "title", "translate", "upper", "zfill"]
divmod(a, b)
返回的是a//b(除法取整)以及a对b的余数,返回结果类型为tuple
>>> divmod(10, 3) (3, 1)
enumerate(iterable, start=0)
为元素生成下标
>>> li = ["a","b","c"] >>> for n,k in enumerate(li): ... print(n,k) ... 0 a 1 b 2 c
eval(expression, globals=None, locals=None)
把一个字符串当作一个表达式去执行
>>> string = "1 + 3" >>> string "1 + 3" >>> eval(string) 4
exec(object[, globals[, locals]])
把字符串当作python代码执行
>>> exec("for n in range(5): print(n)") 0 1 2 3 4
filter(function, iterable)
筛选过滤,循环可迭代的对象,把迭代的对象当作函数的参数,如果符合条件就返回True,否则就返回False
>>> def func(x): ... if x == 11 or x == 22: ... return True ... >>> ret = filter(func,[11,22,33,44]) >>> for n in ret: ... print(n) ... 11 22
>>> list(filter((lambda x: x > 0),range(-5,5))) [1, 2, 3, 4]
float([x])
将整数和字符串转换成浮点数
>>> float("124") 124.0 >>> float("123.45") 123.45 >>> float("-123.34") -123.34
format(value[, format_spec])
字符串格式化
详键:https://blog.ansheng.me/artic...
frozenset([iterable])
frozenset是冻结的集合,它是不可变的,存在哈希值,好处是它可以作为字典的key,也可以作为其它集合的元素。缺点是一旦创建便不能更改,没有add,remove方法。
getattr(object, name[, default])
返回对象的命名属性的值,name必须是字符串,如果字符串是对象属性之一的名称,则结果是该属性的值。
globals()
获取或修改当前文件内的全局变量
>>> a = "12" >>> bsd = "54asd" >>> globals() {"__doc__": None, "a": "12", "__loader__":, "bsd": "54asd", "__builtins__": , "n": "__doc__", "__name__": "__main__", "__spec__": None, "__package__": None}
hasattr(object, name)
参数是一个对象和一个字符串,如果字符串是对象的某个属性的名称,则结果为True,否则为False。
hash(object)
返回一个对象的hash值
>>> a = "asdadasdwqeq234sdfdf" >>> hash(a) 5390438057823015497
help([object])
查看一个类的所有详细方法,或者查看某个方法的使用详细信息
>>> help(list) Help on class list in module __builtin__: class list(object) | list() -> new empty list | list(iterable) -> new list initialized from iterable"s items | | Methods defined here: | | __add__(...) | x.__add__(y) <==> x+y | | __contains__(...) | x.__contains__(y) <==> y in x | | __delitem__(...) | x.__delitem__(y) <==> del x[y] | | __delslice__(...) | x.__delslice__(i, j) <==> del x[i:j] | | Use of negative indices is not supported. ..........
hex(x)
获取一个数的十六进制
>>> hex(13) "0xd"
id(object)
返回一个对象的内存地址
>>> a = 123 >>> id(a) 1835400816
input([prompt])
交互式输入
>>> name = input("Pless your name: ") Pless your name: ansheng >>> print(name) ansheng
int(x, base=10)
获取一个数的十进制
>>> int("31") 31
也可以作为进制转换
>>> int(10) 10 >>> int("0b11",base=2) 3 >>> int("11",base=8) 9 >>> int("0xe",base=16) 14
isinstance(object, classinfo)
判断对象是否是这个类创建的
>>> li = [11,22,33] >>> isinstance(li,list) True
issubclass(class, classinfo)
查看一个对象是否为子类
iter(object[, sentinel])
创建一个可迭代的对象
>>> obj = iter([11,22,33,44]) >>> obj>>> for n in obj: ... print(n) ... 11 22 33 44
len(s)
查看一个对象的长度
>>> url="ansheng.me" >>> len(url) 10
list([iterable])
创建一个数据类型为列表
>>> li = list([11,22,33,44]) >>> li [11, 22, 33, 44]
locals()
返回当前作用域的局部变量,以字典形式输出
>>> func() >>> def func(): ... name="ansheng" ... print(locals()) ... >>> func() {"name": "ansheng"}
map(function, iterable, ...)
对一个序列中的每一个元素都传到函数中执行并返回
>>> list(map((lambda x : x +10),[1,2,3,4])) [11, 12, 13, 14]
max(iterable, *[, key, default])
max(arg1, arg2, *args[, key])
取一个对象中的最大值
>>> li = list([11,22,33,44]) >>> li = [11,22,33,44] >>> max(li) 44
memoryview(obj)
返回对象obj的内存查看对象
>>> import struct >>> buf = struct.pack("i"*12, *list(range(12))) >>> x = memoryview(buf) >>> y = x.cast("i", shape=[2,2,3]) >>> print(y.tolist()) [[[0, 1, 2], [3, 4, 5]], [[6, 7, 8], [9, 10, 11]]]
min(iterable, *[, key, default])
min(arg1, arg2, *args[, key])
取一个对象中的最小值
>>> li = list([11,22,33,44]) >>> li = [11,22,33,44] >>> min(li) 11
next(iterator[, default])
每次只拿取可迭代对象的一个元素
>>> obj = iter([11,22,33,44]) >>> next(obj) 11 >>> next(obj) 22 >>> next(obj) 33 >>> next(obj) 44 >>> next(obj) # 如果没有可迭代的元素了就会报错 Traceback (most recent call last): File "", line 1, in StopIteration
object
返回一个新的无特征对象
oct(x)
获取一个字符串的八进制
>>> oct(13) "0o15"
open(file, mode="r", buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None)
文件操作的函数,用来做文件操作的
# 打开一个文件 - >>> f = open("a.txt","r")
ord(c)
把一个字母转换为ASCII对对应表中的数字
>>> ord("a") 97 >>> ord("t") 116
pow(x, y[, z])
返回一个数的N次方
>>> pow(2, 10) 1024 >>> pow(2, 20) 1048576
print(*objects, sep=" ", end="n", file=sys.stdout, flush=False)
打印输出
>>> print("hello word") hello word
property(fget=None, fset=None, fdel=None, doc=None)
range(start, stop[, step])
生成一个序列
>>> range(10) range(0, 10) >>> for n in range(5): ... print(n) ... 0 1 2 3 4
repr(object)
返回一个包含对象的可打印表示的字符串
>>> repr(111) "111" >>> repr(111.11) "111.11"
reversed(seq)
对一个对象的元素进行反转
>>> li = [1, 2, 3, 4] >>> reversed(li)>>> for n in reversed(li): ... print(n) ... 4 3 2 1
round(number[, ndigits])
四舍五入
>>> round(3.3) 3 >>> round(3.7) 4
set([iterable])
创建一个数据类型为集合
>>> varss = set([11,222,333]) >>> type(varss)
setattr(object, name, value)
为某个对象设置一个属性
slice(start, stop[, step])
元素的切片操作都是调用的这个方法
sorted(iterable, key)
为一个对象的元素进行排序
代码:
#!/usr/bin/env python # _*_ coding:utf-8 _*_ char=["赵","123", "1", "25", "65","679999999999", "a","B","alex","c" ,"A", "_", "ᒲ","a钱","孙","李","余", "佘","佗", "㽙", "铱", "钲钲㽙㽙㽙"] new_chat = sorted(char) print(new_chat) for i in new_chat: print(bytes(i, encoding="utf-8"))
输出结果:
C:Python35python.exe F:/Python_code/Note/soretd.py ["1", "123", "25", "65", "679999999999", "A", "B", "_", "a", "alex", "a钱", "c", "ᒲ", "㽙", "佗", "佘", "余", "孙", "李", "赵", "钲钲㽙㽙㽙", "铱"] b"1" b"123" b"25" b"65" b"679999999999" b"A" b"B" b"_" b"a" b"alex" b"axe9x92xb1" b"c" b"xe1x92xb2" b"xe3xbdx99" b"xe4xbdx97" b"xe4xbdx98" b"xe4xbdx99" b"xe5xadx99" b"xe6x9dx8e" b"xe8xb5xb5" b"xe9x92xb2xe9x92xb2xe3xbdx99xe3xbdx99xe3xbdx99" b"xe9x93xb1" Process finished with exit code 0
staticmethod(function)
返回函数的静态方法
str(object=b"", encoding="utf-8", errors="strict")
字符串
>>> a = str(111) >>> type(a)
sum(iterable[, start])
求和
>>> sum([11,22,33]) 66
super([type[, object-or-type]])
执行父类的构造方法
tuple([iterable])
创建一个对象,数据类型为元组
>>> tup = tuple([11,22,33,44]) >>> type(tup)
type(object)
查看一个对象的数据类型
>>> a = 1 >>> type(a)>>> a = "str" >>> type(a)
vars([object])
查看一个对象里面有多少个变量
zip(*iterables)
将两个元素相同的序列转换为字典
>>> li1 = ["k1","k2","k3"] >>> li2 = ["a","b","c"] >>> d = dict(zip(li1,li2)) >>> d {"k1": "a", "k2": "b", "k3": "c"}
__import__(name, globals=None, locals=None, fromlist=(), level=0)
生成随机验证码例子导入模块,把导入的模块作为一个别名
生成一个六位的随机验证码,且包含数字,数字的位置随机
# 导入random模块 import random temp = "" for i in range(6): num = random.randrange(0,4) if num == 3 or num == 1: rad2 = random.randrange(0,10) temp = temp + str(rad2) else: rad1 = random.randrange(65,91) c1 = chr(rad1) temp = temp + c1 print(temp)
输出结果
C:Python35python.exe F:/Python_code/sublime/Day06/built_in.py 72TD11
原文链接
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/38396.html
摘要:数字在中,整型长整型浮点数负数布尔值等都可以称之为数字类型。数字类型的复杂度整数比浮点数简单浮点数比复数简单。布尔类型布尔类型其实就是数字和的变种而来,即真或假,实际上就是内置的数字类型的子类而已。 上篇文章中我们简单的体验了Python语言基本概念与语法,那么在继续深入下去的过程中,不妨先学习几个常见的Python内置数据类型?这也是大部分Python教科书的学习目录,由浅至深,慢慢...
摘要:所谓递归其实就是函数本身调用函数,直到满足指定条件之后一层层退出函数,例如从前有座山,山里有座庙,庙里有个老和尚,正在给小和尚讲故事呢故事是什么呢从前有座山,山里有座庙,庙里有个老和尚,正在给小和尚讲故事呢故事是什么呢从前有座山,山里有座庙 所谓递归其实就是函数本身调用函数,直到满足指定条件之后一层层退出函数, 例如 从前有座山,山里有座庙,庙里有个老和尚,正在给小和尚讲故事呢!故事是...
摘要:目前提供的字符串格式化方式有两种百分号方式方式这两种方式在和中都适用,百分号方式是一直内置存在的,方式为近期才出来的。 This PEP proposes a new system for built-in string formatting operations, intended as a replacement for the existing % string formatti...
摘要:可以对文件进行查看创建等功能,可以对文件内容进行添加修改删除,且所使用到的函数在为,在同时支持和,但是在系列移除了函数。在及以后,又支持同时对多个文件的上下文进行管理,即原文链接 Python可以对文件进行查看、创建等功能,可以对文件内容进行添加、修改、删除,且所使用到的函数在Python3.5.x为open,在Python2.7.x同时支持file和open,但是在3.5.x系列移除...
摘要:是个的一种实现方式,编译代码为字节码,然后由虚拟机执行,这意味着此时程序与程序没有区别,只是源代码不一样。原文链接全栈之路系列文章 Python的诞生 Python是著名的龟叔Guido van Rossum(吉多·范罗苏姆)在1989年圣诞节期间,为了打发无聊的圣诞节而编写的一个编程语言。 showImg(https://segmentfault.com/img/remote/146...
阅读 649·2021-11-11 16:55
阅读 2160·2021-11-11 16:55
阅读 1951·2021-11-11 16:55
阅读 2341·2021-10-25 09:46
阅读 1598·2021-09-22 15:20
阅读 2270·2021-09-10 10:51
阅读 1703·2021-08-25 09:38
阅读 2613·2019-08-30 12:48