Learn
Now that we have the first letter stored, we need to add both the letter and the string stored in pyg
to the end of the original string.
Remember how to concatenate (i.e. add) strings together?
greeting = "Hello " name = "D. Y." welcome = greeting + name
Instructions
1.
On a new line after where you created the first
variable:
Create a new variable called new_word
and set it equal to the concatenation of word
, first
, and pyg
.
Take this course for free
By signing up for Codecademy, you agree to Codecademy's Terms of Service & Privacy Policy.