Question: 
Write a function to split the given string with multiple delimiters by using regex.


Model's Code:
import re

def multiple_split(s):
    return re.split(r'[\n*]', s)



Sample Correct Code:
import re
def multiple_split(text):
  return (re.split('; |, |\*|\n',text))


Asserts:
assert multiple_split('Forces of the \ndarkness*are coming into the play.') == ['Forces of the ', 'darkness', 'are coming into the play.']
assert multiple_split('Mi Box runs on the \n Latest android*which has google assistance and chromecast.') == ['Mi Box runs on the ', ' Latest android', 'which has google assistance and chromecast.']
assert multiple_split('Certain services\nare subjected to change*over the seperate subscriptions.') == ['Certain services', 'are subjected to change', 'over the seperate subscriptions.']


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 73 of 974: 56/73 (76.71232876712328%): success