Python 中的 str() 函数 是一个内置函数,可将指定的值转换为字符串。它返回对象的字符串版本,该对象可以是数字、列表、元组或任何其他对象,允许将其表示为字符串。 参数值 参数 说明 对象 要转换为字符串的对象。可以是整数、浮点数、列表、元组、字典等。 编码 指定字符串的编码。 错误 指定如何处理编码和解码错误。 返回值 Python 中的 str() 函数 返回表示给定对象的 str 对象。 如何在 Python 中使用 str() 示例 1 str() 函数将指定的值转换为字符串。 x = 10 s = str(x) print(s) 示例 2 可用于将不同的 数据类型 转换为 字符串。 num = 3.14 str_num = str(num) print('The value of pi is: ' + str_num) 示例 3 还可以使用 str() 将布尔值转换为 字符串。 is_valid = True str_valid = str(is_valid) print('Is the input valid? ' + str_valid) 内置函数 abs() aiter() all() anext() any() ascii() bin() bool() breakpoint() bytearray() bytes() callable() chr() classmethod() compile() complex() delattr() dict() dir() divmod() enumerate() eval() exec() filter() float() format() frozenset() getattr() globals() hasattr() hash() help() hex() id() input() int() isinstance() issubclass() iter() len() list() locals() map() max() memoryview() min() next() object() oct() open() ord() pow() print() property() range() repr() reversed() round() set() setattr() slice() sorted() staticmethod() sum() super() tuple() type() vars() zip()