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

  • Home
  • SEARCH
  • 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 6140141
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T18:04:44+00:00 2026-05-23T18:04:44+00:00

This is a Python function. It’s convert to a list of words from a

  • 0

This is a Python function. It’s convert to a list of words from a string. But I don’t understand the algorithmic the part of code:

for c in ch:
        if c==" ":
            lista.append(ct) # add to list of temporary string
            ct=""            # the ch temporary string reinicialization

I don’t understand, how the ct can append to the list, because the ct=””? How casn it get value?

Thanks for the help!

Here the full code of function:

def szoLista(ch):
    "a ch karakterláncot átalakítja szavakból álló listává"
    lista, ct=[],""     # ct átmeneti string
    for c in ch:
        if c==" ":
            lista.append(ct) # a listához adjuk a ch átmenei stringet
            ct=""            # a ch átmeneti string reinicializálása
        else:
            ct=ct+c
    if ct !="":
        lista.append(ct)    # az utolsó szó hozzáadása
    return lista
  • 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-23T18:04:45+00:00Added an answer on May 23, 2026 at 6:04 pm
    else:
        ct=ct+c
    

    These are the lines you are overlooking.
    ct is set empty when a space if found, but after it was already added to the list.
    If the current character is not a space, the character is appended to ct.
    So when you encounter the next space, you have the last word in ct and can add it to the list.

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

Sidebar

Related Questions

I didn't realize this, but apparently Python's strftime function doesn't support dates before 1900:
Consider this Python code for printing a list of comma separated values for element
Is there an equivalent function to this Python function in Java? struct.unpack(fmt, string) I'm
I'm trying to decode the result of the Python os.wait() function. This returns, according
Unless I'm mistaken, creating a function in Python works like this: def my_func(param1, param2):
In python, I remember there is a function to do this. .count? The big
Not many are aware of this feature, but Python's functions (and methods) can have
I have this Python code that I found online and would like to know
I have this python code that will traverse a tree structure. I am trying
This function is from the book Programming Collective Intelligence, and is supposed to calculate

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.