Python memoryview() 函数Python 内建函数实例创建并打印 memoryview 对象:x = memoryview(b"Hello")print(x)# 返回首个字符的 Unicodeprint(x[0])# 返回第二个字符的 Unico
Python max() 函数Python 内建函数实例返回最大数:x = max(5, 10)完整实例:x = max(5, 10)print(x)定义和用法max() 函数返回有最大值的项目,或者 iterable 中有最大值的项目。
Python map() 函数Python 内建函数实例计算元组中每个单词的长度:def myfunc(n): return len(n)x = map(myfunc, ('apple', 'banana', 'cherry'))完整实例:def myfunc(a): r
Python locals() 函数Python 内建函数实例显示局部符号表:x = locals()print(x)完整实例:x = locals()print(x)定义和用法locals() 函数将局部符号表作为字典返回。符号表包含
Python list() 函数Python 内建函数实例创建包含水果名称的列表:x = list(('apple', 'banana', 'cherry'))完整实例:x = list(('apple', 'banana', 'cherry'))print(x)定义和
Python len() 函数Python 内建函数实例返回列表中的项目数:mylist = ["apple", "banana", "cherry"]x = len(mylist)完整实例:mylist = ["apple", "orange", "cherry"]x = len
Python iter() 函数Python 内建函数实例创建迭代器对象,并打印项目:x = iter(["apple", "banana", "cherry"])print(next(x))print(next(x))print(next(x))完整实例:x = iter([
Python issubclass() 函数Python 内建函数实例检查 myObj 是否是 myAge 的子类:class myAge: age = 63class myObj(myAge): name = "Bill" age = myAgex = issubclass(myO
Python isinstance() 函数Python 内建函数实例检查数字 10 是否是整数:x = isinstance(10, int)完整实例:x = isinstance(5, int)print(x)定义和用法如果指定的对象拥有指定的
Python int() 函数Python 内建函数实例把数字 3.5 转换为整数:x = int(3.14)完整实例:x = int(3.14)print(x)定义和用法int() 函数把指定值转换为整数。语法int(value, base)
Python input() 函数Python 内建函数实例请求用户的姓名并打印出来:print('Enter your name:')x = input()print('Hello, ' + x)完整实例:print("Enter your name:")x = input
Python id() 函数Python 内建函数实例返回元组对象的唯一 id:x = ('apple', 'banana', 'cherry')y = id(x)完整实例:x = ('apple', 'banana', 'cherry')y = id(x)print(y)# Th
Python hex() 函数Python 内建函数实例把 255 转换为十六进制值:x = hex(255)完整实例:x = hex(255)print(x)定义和用法hex() 函数将指定的数字转换为十六进制值。返回的字符
Python hasattr() 函数Python 内建函数实例检查 "Person" 对象是否有 "age" 属性:class Person: name = "Bill" age = 63 country = "USA"x = hasattr(Person, 'age')完整
Python globals() 函数Python 内建函数实例显示全局符号表:x = globals()print(x)完整实例:x = globals()print(x)定义和用法globals() 函数将全局符号表作为字典返回。符号表