python regex split string into multiple variables code example
Example: 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
'''