Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6345223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:46:51+00:00 2026-05-24T20:46:51+00:00

I am confused how python is iterating through this dictionary. From python’s documentation, the

  • 0

I am confused how python is iterating through this dictionary. From python’s documentation, the itervalues returns an iterator over the dictionary’s values.

dict = {"hello" : "wonderful", "today is" : "sunny", "more text" : "is always good"}

for x in dict.itervalues():
    x = x[2:]   

print dict

This prints out the original dictionary unchanged. Why is that? If I am saying the value at position x is “blabla”, why is it not getting set?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T20:46:51+00:00Added an answer on May 24, 2026 at 8:46 pm

    This has nothing to do with strings or lists. The devil is in how the for is unfolded.

    Doing

    for x in d.iteritems():
        # loop body
    

    is more-or-less equivalent to doing

    iter = d.itervalues()
    while True:
        try:
            x = next(iter)
            # loop body
        except StopIteration:
            break
    

    So with this in mind it’s not very hard to see that we are just reassigning x, which holds a result from a function call.

    iter = d.itervalues()
    while True:
        try:
            x = next(iter)
    
            x = 5 # There is nothing in this line about changing the values of d
        except StopIteration:
            break
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i am kind of confused why python add some additional decimal number in this
I am confused by this behaviour of Python(2.6.5), can someone shed light on why
I'm new to Python, and confused by the date/time documentation. I want to compute
I am new to Python and I am confused in importing files from subdirectories.
I'm a bit confused by the documentation for Java DeferredTask. I've read the Python
I'm new in the Python world, coming from PHP. So, this question may sound
I'm confused with file moving under python. Under windows commandline, if i have directory
I'm a little confused about how the standard library will behave now that Python
Totally confused by this one... We have a WAMPServer installation set up, running a
I'm scraping a page with Python's pyquery, and I'm kinda confused by the types

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.