Python Forum
Split String - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Homework (https://python-forum.io/forum-9.html)
+--- Thread: Split String (/thread-16818.html)



Split String - lekuru01 - Mar-16-2019

i am new to python and i am trying to get a better understanding on how to manipulate strings. Here is my program;
g='Hello world! What is your name?
print(g)
g.split(' ')
print(g.split())
How to do i manipulate the strings to get this output
Output:
>>> ['Hello','world','!'],['what','is','your','name','?']
Any help on this issue is greatly appreciated.


RE: Split String - Larz60+ - Mar-16-2019

need closing quote on line 1
first split on '!'
which will give you a list with two cells
split each cell on space g1 = g[0].split() same for g[1]
append '!' to g[0]
print(g0, g1)


RE: Split String - saravanatn - Mar-17-2019

g="Hello world ! what is your name ?"
g1=g.split(' ')
print(g1[0:3],end="")
print(',',end="")
print(g1[3:])



RE: Split String - lekuru01 - Mar-18-2019

(Mar-16-2019, 07:58 AM)Larz60+ Wrote: need closing quote on line 1
first split on '!'
which will give you a list with two cells
split each cell on space g1 = g[0].split() same for g[1]
append '!' to g[0]
print(g0, g1)
Thank you for your response. One other question , how do you manipulate the spring to add addition strings to the original string. Thanks

(Mar-17-2019, 08:52 AM)saravanatn Wrote:
g="Hello world ! what is your name ?"
g1=g.split(' ')
print(g1[0:3],end="")
print(',',end="")
print(g1[3:])
Thank you for your response, one additional question, what is I want to add more to the string, like this

g="Hello world ! what is you name ? my name is Daniel .


RE: Split String - Larz60+ - Mar-19-2019

several ways to do this, a few below
g = g + 'more text'
if python 3.6 or newer:
g = f'{g} more text'


RE: Split String - lekuru01 - Mar-19-2019

(Mar-19-2019, 02:19 AM)Larz60+ Wrote: several ways to do this, a few below
g = g + 'more text'
if python 3.6 or newer:
g = f'{g} more text'

Again, thank you for your response, but I am not sure If I understand you response. I am just trying to understand how to make multiple strings work. Thank you

g="Hello world ! what is your name ? my name is Daniel . I am fine "
g1=g.split(' ')
print(g1[0:3],end="")
print(',',end="")
[python]
print(g1[3:}


RE: Split String - lekuru01 - Mar-19-2019

(Mar-19-2019, 06:41 AM)lekuru01 Wrote:
(Mar-19-2019, 02:19 AM)Larz60+ Wrote: several ways to do this, a few below
g = g + 'more text'
if python 3.6 or newer:
g = f'{g} more text'

Again, thank you for your response, but I am not sure If I understand you response. I am just trying to understand how to make multiple strings work. Thank you

g="Hello world ! what is your name ? my name is Daniel . I am fine "
g1=g.split(' ')
print(g1[0:3],end="")
print(',',end="")
print(g1[3:}
Reposting to adhere to the rule of the house

(Mar-18-2019, 11:44 PM)lekuru01 Wrote:
(Mar-16-2019, 07:58 AM)Larz60+ Wrote: need closing quote on line 1
first split on '!'
which will give you a list with two cells
split each cell on space g1 = g[0].split() same for g[1]
append '!' to g[0]
print(g0, g1)
Thank you for your response. One other question , how do you manipulate the spring to add addition strings to the original string. Thanks

(Mar-17-2019, 08:52 AM)saravanatn Wrote:
g="Hello world ! what is your name ?"
g1=g.split(' ')
print(g1[0:3],end="")
print(',',end="")
print(g1[3:])

Thank you for your response, one additional question, what is I want to add more to the string, like this

g="Hello world ! what is you name ? my name is Daniel . I am fine

Thank you for your response, one additional question, what is I want to add more to the string, like this

g="Hello world ! what is you name ? my name is Daniel . I am fine 
g="Hello world ! what is your name ?"
g1=g.split(' ')
print(g1[0:3],end="")
print(',',end="")
print(g1[3:])