| ???? Python ??? | ??15?? ????Python?????? | |
|---|---|---|
| ???? | repr???? | ???? |
repr???????????????œZ?????????????????????????????????????????????????????????eval(repr(object)) == object??
>>> i = []
>>> i.append('item')
>>> `i`
"['item']"
>>> repr(i)
"['item']"
???????repr??????????????????????????????????????????????????__repr__???????????????????repr????????????????????
| ???? | ????? | ???? |
|---|---|---|
| assert??? | ??? | ???? |