String concatenation in Python
- Suhas Bhairav

- Apr 8, 2023
- 1 min read
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 .


