如何连接code文本在Python采用base64 [英] How to encode text to base64 in python

查看:636
本文介绍了如何连接code文本在Python采用base64的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想带code文本字符串为base64。

I am trying to encode a text string to base64.

我试着这样做:

name = "your name"
print('encoding %s in base64 yields = %s\n'%(name,name.encode('base64','strict')))

但是,这给了我以下错误:

But this gives me the following error:

LookupError: 'base64' is not a text encoding; use codecs.encode() to handle arbitrary codecs

我如何去这样做? (使用Python 3.4)

How do I go about doing this ? ( using Python 3.4)

推荐答案

记住要导入的base64和b64en code采用字节作为参数。<​​/ P>

Remember to import base64 and that b64encode takes bytes as an argument.

import base64
base64.b64encode(bytes('your string', 'utf-8'))

这篇关于如何连接code文本在Python采用base64的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆