python内置函数str的作用_Python3.6内置函数——str

英文文档

class(object='')

class(object=b'',encoding='utf-8',errors='strict')

Return a version ofobject. See for details.

is the built-in stringclass. For general informationabout strings, seeText Sequence Type — str.

str()

class str(object='')

str(object=b'', encoding='utf-8', errors='strict') 。

1、str函数功能时将对象转换成其字符串表现形式,如果不传入参数,将返回空字符串。

2、当转换二进制流时,可以传入参数encoding,表示读取字节数组所使用的编码格式;参数errors,表示读取二进制的错误级别。(这两个参数和open方法中的同名参数有相同取值和类似的含义,详见Python内置函数(47)——open)。

小结

希望通过上面的操作能帮助大家。如果你有什么好的意见,建议,或者有不同的看法,希望你留言和我进行交流、讨论。

你可能感兴趣的:(python内置函数str的作用_Python3.6内置函数——str)