I'm trying to print a list of my favorite games in addition to some text.
Code:
favGames = ["The Division", "WoW", "Legend of Zelda", "Super Smash Bros."]
print("Here are some of my favorite games! " + favGames)
Expectation: I expected to simply get a print line of:
Here are some of my favorite games! The Division, WoW, Legend of Zelda, Super Smash Bros.
I'm receiving the following error message: TypeError: can only concatenate list (not "str") to list