Example 1: python repr # The repr() function returns a printable representational string of the given object. >>> var = 'foo' >>> print(repr(var)) "'foo'" ...
確定! 回上一頁