<bdo id='F6rM3'></bdo><ul id='F6rM3'></ul>
  1. <i id='F6rM3'><tr id='F6rM3'><dt id='F6rM3'><q id='F6rM3'><span id='F6rM3'><b id='F6rM3'><form id='F6rM3'><ins id='F6rM3'></ins><ul id='F6rM3'></ul><sub id='F6rM3'></sub></form><legend id='F6rM3'></legend><bdo id='F6rM3'><pre id='F6rM3'><center id='F6rM3'></center></pre></bdo></b><th id='F6rM3'></th></span></q></dt></tr></i><div id='F6rM3'><tfoot id='F6rM3'></tfoot><dl id='F6rM3'><fieldset id='F6rM3'></fieldset></dl></div>

      <legend id='F6rM3'><style id='F6rM3'><dir id='F6rM3'><q id='F6rM3'></q></dir></style></legend>

      <small id='F6rM3'></small><noframes id='F6rM3'>

    1. <tfoot id='F6rM3'></tfoot>
    2. 如何在python中将文本编码为base64

      How to encode text to base64 in python(如何在python中将文本编码为base64)

      • <legend id='urLsU'><style id='urLsU'><dir id='urLsU'><q id='urLsU'></q></dir></style></legend>
          <bdo id='urLsU'></bdo><ul id='urLsU'></ul>

          1. <i id='urLsU'><tr id='urLsU'><dt id='urLsU'><q id='urLsU'><span id='urLsU'><b id='urLsU'><form id='urLsU'><ins id='urLsU'></ins><ul id='urLsU'></ul><sub id='urLsU'></sub></form><legend id='urLsU'></legend><bdo id='urLsU'><pre id='urLsU'><center id='urLsU'></center></pre></bdo></b><th id='urLsU'></th></span></q></dt></tr></i><div id='urLsU'><tfoot id='urLsU'></tfoot><dl id='urLsU'><fieldset id='urLsU'></fieldset></dl></div>

            <small id='urLsU'></small><noframes id='urLsU'>

              <tbody id='urLsU'></tbody>
          2. <tfoot id='urLsU'></tfoot>

                本文介绍了如何在python中将文本编码为base64的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我正在尝试将文本字符串编码为 base64.

                I am trying to encode a text string to base64.

                我试过这样做:

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

                但这给了我以下错误:

                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,b64encode将字节作为参数.

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

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

                这篇关于如何在python中将文本编码为base64的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)
                Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)
                Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)
                Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)
                Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)
                Grouping pandas DataFrame by 10 minute intervals(按10分钟间隔对 pandas 数据帧进行分组)

                  <bdo id='J5DpB'></bdo><ul id='J5DpB'></ul>
                • <legend id='J5DpB'><style id='J5DpB'><dir id='J5DpB'><q id='J5DpB'></q></dir></style></legend>
                • <small id='J5DpB'></small><noframes id='J5DpB'>

                • <tfoot id='J5DpB'></tfoot>
                      <tbody id='J5DpB'></tbody>

                        1. <i id='J5DpB'><tr id='J5DpB'><dt id='J5DpB'><q id='J5DpB'><span id='J5DpB'><b id='J5DpB'><form id='J5DpB'><ins id='J5DpB'></ins><ul id='J5DpB'></ul><sub id='J5DpB'></sub></form><legend id='J5DpB'></legend><bdo id='J5DpB'><pre id='J5DpB'><center id='J5DpB'></center></pre></bdo></b><th id='J5DpB'></th></span></q></dt></tr></i><div id='J5DpB'><tfoot id='J5DpB'></tfoot><dl id='J5DpB'><fieldset id='J5DpB'></fieldset></dl></div>