标签: python python-3.x
>>> s = 'hello world' >>> x = str.upper(s) >>> y = s.upper() >>> x 'HELLO WORLD' >>> y 'HELLO WORLD' >>>
x和y都产生相同的结果。 说明用例,每个用例在哪里使用?