<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

      时间:2023-08-30

      • <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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:将 Base64 字符串加载到 Python 图像库中 下一篇:在 Python 3 中将整数的字符串表示形式编码为 base64

                相关文章

                  <bdo id='J5DpB'></bdo><ul id='J5DpB'></ul>
              1. <legend id='J5DpB'><style id='J5DpB'><dir id='J5DpB'><q id='J5DpB'></q></dir></style></legend>
              2. <small id='J5DpB'></small><noframes id='J5DpB'>

              3. <tfoot id='J5DpB'></tfoot>

                  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>