def print_random_names(names, num_names): # you need to finish this function! # This function should print out a random name from "names" # num_names times.
If you call print_random_names(['bob'], 1), your function should print out bob once. If you call print_random_names(['bob'], 2), it should print out bob twice. Finally if you call print_random_names(['bob', 'james'], 1), it should either print out bob once or james once.