Python - String Concatenation
In Python, we can use several string operations like concatenations. Two strings can be concatenated using the + operator. For example, to concatenate strings “football” and “basketball” and assign it to new variable games, use the below code
games = "football" + "basketball"
INSTRUCTIONS
- Assign
Cloudxto a variablefirstandLabto a variablesecond - Concatenate
firstandsecondand store the result in the variablefinal
It says Assign correct value to variable first
My code is :
final= “Cloudx + Lab”