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

    • <bdo id='u8B9w'></bdo><ul id='u8B9w'></ul>
    1. <tfoot id='u8B9w'></tfoot>

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

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

      如何在Python中向字典添加新键?

      How can I add new keys to a dictionary in Python?(如何在Python中向字典添加新键?)

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

          <tfoot id='sunb0'></tfoot>
        1. <small id='sunb0'></small><noframes id='sunb0'>

            • <i id='sunb0'><tr id='sunb0'><dt id='sunb0'><q id='sunb0'><span id='sunb0'><b id='sunb0'><form id='sunb0'><ins id='sunb0'></ins><ul id='sunb0'></ul><sub id='sunb0'></sub></form><legend id='sunb0'></legend><bdo id='sunb0'><pre id='sunb0'><center id='sunb0'></center></pre></bdo></b><th id='sunb0'></th></span></q></dt></tr></i><div id='sunb0'><tfoot id='sunb0'></tfoot><dl id='sunb0'><fieldset id='sunb0'></fieldset></dl></div>
                本文介绍了如何在Python中向字典添加新键?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                是否可以在创建Python字典后向其添加键?

                它似乎没有.add()方法。

                推荐答案

                您可以通过为键赋值来在字典上创建新键/值对

                d = {'key': 'value'}
                print(d)  # {'key': 'value'}
                
                d['mynewkey'] = 'mynewvalue'
                
                print(d)  # {'key': 'value', 'mynewkey': 'mynewvalue'}
                

                如果键不存在,它将被添加并指向该值。如果它存在,则它指向的当前值将被覆盖。

                这篇关于如何在Python中向字典添加新键?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                相关文档推荐

                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;?(为什么我的函数输出打印出“无?)
                  <bdo id='jiYeP'></bdo><ul id='jiYeP'></ul>
                    <tfoot id='jiYeP'></tfoot>
                      <tbody id='jiYeP'></tbody>
                    <legend id='jiYeP'><style id='jiYeP'><dir id='jiYeP'><q id='jiYeP'></q></dir></style></legend>
                    <i id='jiYeP'><tr id='jiYeP'><dt id='jiYeP'><q id='jiYeP'><span id='jiYeP'><b id='jiYeP'><form id='jiYeP'><ins id='jiYeP'></ins><ul id='jiYeP'></ul><sub id='jiYeP'></sub></form><legend id='jiYeP'></legend><bdo id='jiYeP'><pre id='jiYeP'><center id='jiYeP'></center></pre></bdo></b><th id='jiYeP'></th></span></q></dt></tr></i><div id='jiYeP'><tfoot id='jiYeP'></tfoot><dl id='jiYeP'><fieldset id='jiYeP'></fieldset></dl></div>

                    • <small id='jiYeP'></small><noframes id='jiYeP'>