1lst = input().split(',')#can use any seperator value inside '' of split
2print (lst)
3#given input = hello,world
4#output: ['hello', 'world']
5#another example
6lst = input().split(' ; ')#can use any seperator value inside '' of split
7print (lst)
8#given input = hello ; world ; hi there
9#output: ['hello', 'world', 'hi there']