Answers for "python splitting a variable into two"

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

Code answers related to "python splitting a variable into two"

Python Answers by Framework

Browse Popular Code Answers by Language