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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T05:28:45+00:00 2026-06-01T05:28:45+00:00

I start out with an empty list and prompt the user for a phrase.

  • 0

I start out with an empty list and prompt the user for a phrase. I want to add each character as a single element of the array, but the way I’m doing this creates a list of lists.

myList = []
for i in range(3):
    myPhrase = input("Enter some words: ")
    myList.append(list(myPhrase))
    print(myList)

I get:

Enter some words: hi bob
[['h', 'i', ' ', 'b', 'o', 'b']]

Enter some words: ok
[['h', 'i', ' ', 'b', 'o', 'b'], ['o', 'k']]

Enter some words: bye
[['h', 'i', ' ', 'b', 'o', 'b'], ['o', 'k'], ['b', 'y', 'e']]

but the result I want is:

['h', 'i', ' ', 'b' ... 'o', 'k', 'b', 'y', 'e']
  • 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-01T05:28:46+00:00Added an answer on June 1, 2026 at 5:28 am

    The argument to .append() is not expanded, extracted, or iterated over in any way. You should use .extend() if you want all the individual elements of a list to be added to another list.

    >>> L = [1, 2, 3, 4]
    >>> M = [5, 6, 7, 8, 9]
    >>> L.append(M)    # Takes the list M as a whole object
    >>>                # and puts it at the end of L
    >>> L
    [0, 1, 2, 3, [5, 6, 7, 8, 9]]
    >>> L = [1, 2, 3, 4]
    >>> L.extend(M)    # Takes each element of M and adds 
    >>>                # them one by one to the end of L
    >>> L
    [0, 1, 2, 3, 5, 6, 7, 8, 9]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In main the list prints out using the insertion operator, but all that I
Let me start out by saying that I'm not a JavaScript developer so this
I'll start out by giving you the code I'm working on so that you
I'm trying to start out with LinqtoXml. I have added (I think) the right
Let me start out by saying that I'm not a C developer and I
What is a strong iPhone framework to start out developing with, besides the SDK
Often when beginning a new project, I start out with what I believe to
I'm working on early designs for an application that needs to start out small
Need some help assigning a mouseover event to display some icons that start out
Suppose I'm following TDD and using VS/ReSharper. I start out writing a test like

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.