Concatenation of python

How do it?

You must select a tag to post in this category. Please find the tag relating to the section of the course you are on E.g. loops, learn-compatibility

When you ask a question, don’t forget to include a link to the exercise or project you’re dealing with!

If you want to have the best chances of getting a useful answer quickly, make sure you follow our guidelines about how to ask a good question. That way you’ll be helping everyone – helping people to answer your question and helping others who are stuck to find the question and answer! :slight_smile:

I think the idea is to do
message = string1 + string2 + string3 + string4 + string5 + string6
to concatenate the strings together, and to have the resulting string as message

then
print(message)

2 Likes

Thanks!! Let me try.