top of page

String concatenation in Python

Updated: Apr 19, 2023


Strings in Python can be concatenated or joined in a simple way.


We can use the + sign to concat two strings.



x = "Metric"
y = "Coder"

print(x+y)

The link to the Github repository is here .



Subscribe to get all the updates

© 2025 Metric Coders. All Rights Reserved

bottom of page