• 技术文章 >Python技术 >Python基础教程

    python中repr函数作用是什么?

    宋雪维宋雪维2021-02-03 18:32:38原创4207

    image.png

    本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

    1、repr() 函数

    得到的字符串通常可以用来重新获得该对象,将对象转化为供解释器读取的形式。

    2、语法

    repr(a)

    3、参数

    a: 对象。

    4、返回值

    返回一个对象的 string 格式。

    5、使用实例

    class test:
        def __init__(self,name,age):
            self.age = age
            self.name = name
        def __repr__(self):
            return "Class_Test[name="+self.name+",age="+str(self.age)+"]"
    t = test("Zhou",30)
     
    print(t)

    repr()的输入对python比较友好,大家可以放心使用哦~

    专题推荐:pythonrepr函数
    上一篇:python中的filter函数功能是什么? 下一篇:python repr()与str()区别总结

    相关文章推荐

    • python根据键值(value)返回键(key)• python中的filter函数功能是什么?• python中map函数和filter函数有什么区别?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网