Python 字符串String decode() 方法 Python 字符串String count() 方法 Python 字符串String encode() 方法 Python 字符串String decode() 方法 #!/usr/bin/python Str = "this is string example....wow!!!"; Str = Str.encode('base64','strict'); print "Encoded String: " + Str print "Decoded String: " + Str.decode('base64','strict') Python 字符串String count() 方法 Python 字符串String encode() 方法