在Python3中,可以使用内置的base64模块来进行base64编码和解码操作。下面是一个简单的示例:
import base64
# 要编码的字符串
original_string = "Hello, world!"
# 进行base64编码
encoded_string = base64.b64encode(original_string.encode()).decode()
print("Encoded string:", encoded_string)
# 进行base64解码
decoded_string = base64.b64decode(encoded_string).decode()
print("Decoded string:", decoded_string)
在上面的示例中,首先将原始字符串编码为字节流,然后使用base64.b64encode方法进行编码。然后再使用base64.b64decode方法进行解码,并最后将解码后的字节流转换为字符串。