Python3---内置函数---str()

Posted 我是谁9

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python3---内置函数---str()相关的知识,希望对你有一定的参考价值。

前言

该文章描述了函数str()的使用

2020-01-15

天象独行

  0X01;描述

    str() 函数将对象转化为适于人阅读的形式。

  0X02;语法

    class str(object=‘‘)

    参数:

      object 表示对象

  0X03;返回值

    返回一个对象的string格式

  0X04;举例:

#!/uer/bin/env python
#coding:utf-8
a = i am a teather
dict = {1:b,2:c}
print(str(a))
print(str(dict))

  运行结果

/home/aaron/桌面/Python3-Test/venv/bin/python /home/aaron/桌面/Python3-Test/20200115.py
i am a teather
{1: b, 2: c}

Process finished with exit code 0

 

 

以上是关于Python3---内置函数---str()的主要内容,如果未能解决你的问题,请参考以下文章

python3全栈开发-内置函数补充,反射,元类,__str__,__del__,exec,type,__call__方法

python3 内置函数

python3基础之“内置函数运行实例”

是否可以在 python3 中完全使用 Monkey Patch 内置的`str`

Python3中内置类型bytes和str用法及byte和string之间各种编码转换

Python3 输入输出和File(文件) 方法