Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (47.6k points)

I have a string like this :

states = "Alaska Alabama Arkansas American Samoa Arizona California Colorado"

and I want to split it into a list like this

states = {Alaska, Alabama, Arkansas, American, Samoa, ....}

I am new in python.

Help me, please.

1 Answer

0 votes
by (106k points)

For converting a space-delimited string to list you can use the below-mentioned code:-

states = "Alaska Alabama Arkansas American Samoa Arizona California Colorado"

states_list = states.split (' ')

To know more about this you can have a look at the following video tutorial:-

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Aug 26, 2019 in Python by Sammy (47.6k points)
0 votes
1 answer
asked Feb 7, 2021 in Python by laddulakshana (16.4k points)

Browse Categories

...