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 8791563
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T22:51:37+00:00 2026-06-13T22:51:37+00:00

I’m currently learning python using Learn Python the Hard Way and really enjoying it.

  • 0

I’m currently learning python using Learn Python the Hard Way and really enjoying it. In one of the lesson examples, there is a use of ‘return’ that I fail to grasp.

The lesson I’m stuck on is Exercise 43: Gothons From Planet Percal #25. I understand that when the game is first run next_room_name is set to central_corridor and so central_corridor() is called during the first loop under play().
What I don’t understand is how self.start get’s re-assigned.

For example, in the instance of death being returned under central_corridor(). After the return on line 49, we’re back in the play(self): while True loop. The first line is next_room_name = self.start As far as I know, self.start still equals central_corridor, but it apparently is now equalling death.

Does this mean that after death is returned, and still in the while loop under play(), the object Game() has been reinitialized, the __init__ being fed the results of the return? I’m confused how the next_room_name = self.start under __init__ is being reassigned to death when we’re technically still in the play(self): while True loop and haven’t exited it. I guess I’m confused as to where death is being returned to.

  • 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-06-13T22:51:38+00:00Added an answer on June 13, 2026 at 10:51 pm

    So let’s walk through a few steps of it up until the while loop:

    a_game = Game("central_corridor")
    a_game.play()
    

    Here we instantiate a_game, with the start_value = central_corridor. So far, so good 🙂 Now we run a_game.play():

    def play(self):
        next_room_name = self.start
    
        while True:
            print "\n--------"
            room = getattr(self, next_room_name)
            next_room_name = room()
    

    As you correctely stated, next_room_name gets assigned the value central_corridor, and then the while loop begins.

    This may be the important part to get – the while loop only executes the while piece and everything indented undnerneath it – next_room_name is not reassigned to self.start each time. Instead, we define room as the attribute next_room_name (which is central_corridor), and then run the method of the same name. The return value of that method (let’s say death) is then used in the next loop, meaning that room = death, next_room_name= the result of death(), which prints a random quip and then exits. If the name were another room, it would continue the loop.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am reading a book about Javascript and jQuery and using one of the
I want use html5's new tag to play a wav file (currently only supported
I'm making a simple page using Google Maps API 3. My first. One marker
link Im having trouble converting the html entites into html characters, (&# 8217;) i
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I am trying to understand how to use SyndicationItem to display feed which is
I have a string like this: La Torre Eiffel paragonata all’Everest What PHP function
I'm using v2.0 of ClassTextile.php, with the following call: $testimonial_text = $textile->TextileRestricted($_POST['testimonial']); ... and
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build

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.