Python exec() 函数Python 内建函数实例执行代码块:x = 'name = "Bill"\nprint(name)'exec(x)完整实例:x = 'name = "Bill"\nprint(name)'exec(x)定义和用法exec() 函数执行指
Python eval() 函数Python 内建函数实例计算表达式 'print(78)':x = 'print(78)'eval(x)完整实例:x = 'print(78)'eval(x)定义和用法eval() 函数计算指定的表达式,如果
Python enumerate() 函数Python 内建函数实例将元组转换为可枚举对象:x = ('apple', 'banana', 'cherry')y = enumerate(x)完整实例:x = ('apple', 'banana', 'cherry')y = en
Python divmod() 函数Python 内建函数实例显示 5 除以 2 的商和余数:x = divmod(5, 2)完整实例:x = divmod(5, 2)print(x)定义和用法divmod() 函数返回当参数 1 除以参数 2 时
Python dir() 函数Python 内建函数实例显示对象的内容:class Person: name = "Bill" age = 63 country = "USA"print(dir(Person))完整实例:class Person: name = "Bill"
Python dict() 函数Python 内建函数实例创建包含个人信息的字典:x = dict(name = "Bill", age = 63, country = "USA")完整实例:x = dict(name = "Bill", age = 63, country =
Python delattr() 函数Python 内建函数实例删除 "person" 对象的 "age" 属性:class Person: name = "Bill" age = 63 country = "USA"delattr(Person, 'age')完整实例:clas
Python complex() 函数Python 内建函数实例将数字 7 和虚数 8 转换为复数:x = complex(7, 8)完整实例:x = complex(7, 8)print(x)定义和用法complex() 函数通过指定实数和虚数
Python compile() 函数Python 内建函数实例将文本编译为代码,然后执行:x = compile('print(78)', 'test', 'eval')exec(x)完整实例:x = compile('print(78)', 'test', 'eval')e
Python chr() 函数Python 内建函数实例获得表示 unicode 78 的字符:x = chr(78)完整实例:x = chr(78)print(x)定义和用法chr() 函数返回代表指定 unicode 的字符。语法chr(num
Python callable() 函数Python 内建函数实例检查函数是否可调用:def x(): a = 7print(callable(x))完整实例:def x(): a = 7print(callable(x))定义和用法如果指定的对象是
Python bytes() 函数Python 内建函数实例返回 5 个字节的数组:x = bytes(5)完整实例:x = bytes(5)print(x)定义和用法bytes() 函数返回字节对象。它可以将对象转换为字节对象,
Python bytearray() 函数Python 内建函数实例返回 5 个字节的数组:x = bytearray(5)完整实例:x = bytearray(5)print(x)定义和用法bytearray() 函数返回 bytearray 对象。它可
Python bool() 函数Python 内建函数实例返回 1 的布尔值:x = bool(1)完整实例:x = bool(1)print(x)定义和用法bool() 函数返回指定对象的布尔值。该对象将始终返回 True,除非:
Python bin() 函数Python 内建函数实例返回 67 的二进制版本:x = bin(67)完整实例:x = bin(67)print(x)# The result will always have the prefix 0b定义和用法bin() 函数返