Todayโs challenge is all about strings (text in Python).
โ
Instructions
Create a variable called player_name with your name.
Create another variable called favorite_game with your favorite video game.
Print a sentence that combines both using a string.
๐ Example
player_name = "Enrique"
favorite_game = "Minecraft"
# This line is being concatenated
print("Hi, my name is " + player_name + " and my favorite game is " + favorite_game)
๐ Output:
Hi, my name is Enrique and my favorite game is Minecraft!