I have a function run_model which takes in 5 arguments
run_model(lr_model,X_train_full,y_train_full,X_test_full,y_test_full)
can I call the function with one defined argument and a list
run_model(lr_model,[full_data])
full_data = (X_train_full,y_train_full,X_test_full,y_test_full)