在Python中,`str` 是一个内置函数,用于将对象转换为字符串类型,即适合人阅读的形式。`str` 函数的语法如下:
str(object=None)
`object` 是待被转换成字符串的参数,可以省略。
当 `object` 省略时,函数返回空字符串。
`str` 函数可以用于任何数据类型,如数字、列表、元组、字典等,将它们转换为字符串类型。

下面是一些使用 `str` 函数的示例:
将数字转换为字符串num = 42str_num = str(num)print(str_num) 输出:'42'将列表转换为字符串list_example = ['hello', 'world']str_list = str(list_example)print(str_list) 输出:"['hello', 'world']"将字典转换为字符串dict_example = {'name': 'Alice', 'age': 30}str_dict = str(dict_example)print(str_dict) 输出:"{'name': 'Alice', 'age': 30}"
`str` 函数是Python中非常重要的一个函数,因为它允许你将数据以文本形式进行存储和处理。
