Python getattr() 函数Python 内建函数实例获取 "Person" 对象的 "age" 属性的值:class Person: name = "Bill" age = 63 country = "USA"x = getattr(Person, 'age')完整
Python frozenset() 函数Python 内建函数实例冻结列表,使其不可变:mylist = ['apple', 'banana', 'cherry']x = frozenset(mylist)完整实例:mylist = ['apple', 'banana', 'che
Python format() 函数Python 内建函数实例把数字 0.5 格式化为百分比值:x = format(0.5, '%')完整实例:x = format(0.5, '%')print(x)定义和用法format() 函数把指定值格式化
Python float() 函数Python 内建函数实例把数字 5 转换为浮点数:x = float(5)完整实例:x = float(5)print(x)定义和用法float() 把指定值转换为浮点数。语法float(value)参数
Python filter() 函数Python 内建函数实例过滤数组,并返回一个仅包含等于或大于 22 的值的新数组:ages = [5, 16, 19, 22, 26, 39, 45]def myFunc(x): if x < 22: return
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