Answers for "how to use split multiple times in python"

1

split a variable into multiple variables in python

variable = "Hello, my name, is, ect"

#The seperate varibles ("a,b,c,d")     
a, b, c, d = variable.split(",") # What we are splitting the variable with (",") 

print(f"{a} n {b} n{c} n{d}")
# Our output would be:
'''
Hello
my name
is
ect
'''
Posted by: Guest on September-29-2020
-1

python split multiple delimiters

#Do a str.replace('? ', ', ') and then a str.split(', ')
#Example:
a = "Hello, what is your name? I'm Bob."
a.replace('? ', ', ')
print(a)
#"Hello, what is your name, I'm Bob."
a.split(", ")
print(a)
#["Hello", "what is your name", "I'm Bob."]
Posted by: Guest on March-15-2021

Code answers related to "how to use split multiple times in python"

Python Answers by Framework

Browse Popular Code Answers by Language