Solution: Concatenating Strings
Review the solution to the challenge.
We'll cover the following...
Solution
- Ask the user for their first and last name. Store the value entered by the user in a variable called
firstName
andlastName
, respectively.
firstName = user_input first name
lastName =
...