Python error runtimeerror:dictionary changed size during iteration

Source: Internet
Author: User
Tags ming

Pythonn error message:
C:\Users\Administrator\AppData\Local\Programs\Python\Python36-32\python.exe c:/users/administrator/ pycharmprojects/pythondemo/maptest.py
Traceback (most recent):
File "c:/users/administrator/pycharmprojects/pythondemo/maptest.py", line 5, <module>
For line in Maps.keys ():
Runtimeerror:dictionary changed size during iteration


# Python2 The elements in the dictionary while the traversal is implemented, and the error message is run in Python3:
"""
C:\Users\Administrator\AppData\Local\Programs\Python\Python36-32\python.exe c:/users/administrator/ pycharmprojects/pythondemo/maptest.py
Traceback (most recent):
File "c:/users/administrator/pycharmprojects/pythondemo/maptest.py", line 5, <module>
For line in Maps.keys ():
Runtimeerror:dictionary changed size during iteration
"""
# maps = {1: "Li Ming", 2: "Danny"}
# for line in Maps.keys ():
# if (line = = 2):
# Maps.pop (line)
# Print (MAPS)



# Python3 to delete elements in a dictionary while implementing traversal
Maps = {1: "Li Ming", 2: "Danny"}
For line in list (Maps.keys ()):
if (line = = 2):
Maps.pop (line)
Print (MAPS)

Python error runtimeerror:dictionary changed size during iteration

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.