Is there a way to print out the values of a list embedded in a sentence without calling them individually? For example, instead of doing this:
test = ["baseball","brother","sister"]
print ("Bob went out to play {} with his {} and {}.".format(test[0], test[1], test[2])).
Is there a way to shorten it to something like:
print ("Bob went out to play {} with his {} and {}.".format(test[0:2]))