Python str & repr
摘要:
Python str & repr [repr 更多是用来配合 eval 的 ( from str py class Test(object): def __init__(self): pass def __repr__(self): return 'from repr' test = Test() 阅读全文
posted @ 2019-09-29 18:14 doubtful 阅读(204) 评论(0) 推荐(0) 编辑