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
Cloudx
to a variablefirst
andLab
to a variablesecond
- Concatenate
first
andsecond
and store the result in the variablefinal
It says Assign correct value to variable first
My code is :
final= “Cloudx + Lab”