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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:07:58+00:00 2026-06-15T12:07:58+00:00

Possible Duplicate: What is the difference between LIST.append(1) and LIST = LIST + [1]

  • 0

Possible Duplicate:
What is the difference between LIST.append(1) and LIST = LIST + [1] (Python)

I’m new to Python and new to programming. I followed the book ThinkPython and here is one thing I can’t get straight.

Exercise 10.7 Write a function that reads the file words.txt and builds a list with one element per word. Write two versions of this function, one using the append method and the other using the idiom t = t + [x]. Which one takes longer to run? Why?

I tried the two methods and found the later one (t=t+[x]) took much longer time than append method. Here is my first question, why would this happen?

I changed the line t=t+[x] to t+=[x] just for no reason only to find this revised version take almost the same time as the append method. I thought t=t+[x] is equal to t+=[x], apparently they are not. Why?

BTW: I tried search Google using python += as key words but it seems Google won’t take += as a key word even I put a quotation mark to it.

  • 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-15T12:08:00+00:00Added an answer on June 15, 2026 at 12:08 pm
    t = t + [x]
    

    takes t, concatenates with [x] (calling t‘s method __add__), which creates a new list, which is then named t.

    t += [x]
    

    calls the t‘s method __iadd__ which works directly on the list itself. There is no extra list created.

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

Sidebar

Related Questions

Possible Duplicate: In Python, what is the difference between “.append()” and “+= []”? In
Possible Duplicate: What is the difference between LIST.append(1) and LIST = LIST + [1]
Possible Duplicate: C#: Difference between List<T> and Collection<T> (CA1002, Do not expose generic lists)
Possible Duplicate: Difference between class property mVar and instance variable self.mVar I am new
Possible Duplicate: What is the difference between List (of T) and Collection(of T)? I
Possible Duplicate: What is the difference between slice assignment that slices the whole list
Possible Duplicate: List<T> vs BindingList<T> Advantages/DisAdvantages what is the difference between IList and IBindingList
Possible Duplicate: Collections.emptyList() vs. new instance I was trying to understand the difference between
Possible Duplicate: Primitive Array vs ArrayList What is the difference between List and Array
Possible Duplicate: What's the difference between IEnumerable and Array, IList and List? What's the

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.