Answers for "split directory into separate variables paython"

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 "split directory into separate variables paython"

Python Answers by Framework

Browse Popular Code Answers by Language