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

  • <legend id='tNjZd'><style id='tNjZd'><dir id='tNjZd'><q id='tNjZd'></q></dir></style></legend>

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

    1. <tfoot id='tNjZd'></tfoot>

      1. 如何将带符号的 32 位 int 转换为无符号的 32 位

        时间:2023-09-14

        <legend id='6M43a'><style id='6M43a'><dir id='6M43a'><q id='6M43a'></q></dir></style></legend>

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

                <small id='6M43a'></small><noframes id='6M43a'>

                  <tbody id='6M43a'></tbody>

                  <bdo id='6M43a'></bdo><ul id='6M43a'></ul>
                  本文介绍了如何将带符号的 32 位 int 转换为无符号的 32 位 int?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  这是我目前拥有的.有没有更好的方法来做到这一点?

                  This is what I have, currently. Is there any nicer way to do this?

                  import struct
                  def int32_to_uint32(i):
                      return struct.unpack_from("I", struct.pack("i", i))[0]
                  

                  推荐答案

                  不确定是不是更好"...

                  Not sure if it's "nicer" or not...

                  import ctypes
                  
                  def int32_to_uint32(i):
                      return ctypes.c_uint32(i).value
                  

                  这篇关于如何将带符号的 32 位 int 转换为无符号的 32 位 int?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:如何将 Numpy 数组转换为 Panda DataFrame 下一篇:使用 strptime 将带偏移量的时间戳转换为 datetime

                  相关文章

                  最新文章

                • <tfoot id='Lc5Bg'></tfoot>
                • <small id='Lc5Bg'></small><noframes id='Lc5Bg'>

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

                  1. <legend id='Lc5Bg'><style id='Lc5Bg'><dir id='Lc5Bg'><q id='Lc5Bg'></q></dir></style></legend>

                        <bdo id='Lc5Bg'></bdo><ul id='Lc5Bg'></ul>