def my_func(*args):
	return print(args)
	
args_list = [1, 2, 'hui']

my_func(*args_list)