String concatenation in PythonApr 8, 20231 min readUpdated: Apr 19, 2023Strings 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 .
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 .