不要使用字符串,使用可变的东西,如字节数。 #!/usr/bin/python s = bytearray("my dog has fleas") for n in xrange(len(s)): s[n] = chr(s[n]).upper() print s.
確定! 回上一頁