create multiple split in python code example

Example 1: how to split a string in python with multiple delimiters

>>> a='Beautiful, is; better*than\nugly'
>>> import re
>>> re.split('; |, |\*|\n',a)
['Beautiful', 'is', 'better', 'than', 'ugly']

Example 2: 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
'''