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

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

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

        如何将 24 小时时间转换为 12 小时时间?

        How can I convert 24 hour time to 12 hour time?(如何将 24 小时时间转换为 12 小时时间?)

                  <tbody id='LdYDn'></tbody>
                • <bdo id='LdYDn'></bdo><ul id='LdYDn'></ul>

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

                • <legend id='LdYDn'><style id='LdYDn'><dir id='LdYDn'><q id='LdYDn'></q></dir></style></legend>
                  <tfoot id='LdYDn'></tfoot>

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

                • 本文介绍了如何将 24 小时时间转换为 12 小时时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  I have the following 24-hour times:

                  {'Wed': '10:30 - 21:00', 'Sun': '10:30 - 21:00', 'Thu': '10:30 - 21:00', 
                   'Mon': '10:30 - 21:00', 'Fri': '10:30 - 22:00', 'Tue': '10:30 - 21:00', 
                   'Sat': '10:30 - 22:00'}
                  

                  How can I convert this to 12-hour time?

                  {'Wed': '10:30 AM - 09:00 PM', 'Sun': '10:30 AM - 09:00 PM', 
                   'Thu': '10:30 AM - 09:00 PM', 'Mon': '10:30 AM - 09:00 PM', 
                   'Fri': '10:30 AM- 10:00 PM', 'Tue': '10:30 AM- 09:00 PM', 
                   'Sat': '10:30 AM - 11:00 PM'}
                  

                  I want to intelligently convert "10.30" to "10.30 AM" & "22:30" to "10:30 PM". I can do using my own logic but is there a way to do this intelligently without if... elif?

                  解决方案

                  >>> from datetime import datetime
                  >>> d = datetime.strptime("10:30", "%H:%M")
                  >>> d.strftime("%I:%M %p")
                  '10:30 AM'
                  >>> d = datetime.strptime("22:30", "%H:%M")
                  >>> d.strftime("%I:%M %p")
                  '10:30 PM'
                  

                  这篇关于如何将 24 小时时间转换为 12 小时时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                  How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                  What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                  How to break out of multiple loops?(如何打破多个循环?)
                  How to put the legend out of the plot(如何将传说从情节中剔除)
                  Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)

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

                    1. <small id='64itB'></small><noframes id='64itB'>

                        <tbody id='64itB'></tbody>
                        • <tfoot id='64itB'></tfoot>

                            <bdo id='64itB'></bdo><ul id='64itB'></ul>