string concatenation python code example
Example 1: how to concatenate a string with int in python
#by chaing it's type using str() function
# We have a string and a integer
string1 = "superman"
num1 = 20
# concatenated string
concatString = string1 + str(num1)
print(concatString)
Example 2: how to concat join 2 strings in python
str1 = “Hello”
str2 = “World”
str1 + str2
Example 3: how to concat strings in python
a = "Hello"
b = "World"
c = a + " " + b
print(c)
Example 4: concardinate str and a variable in python
print("the number is five " + str(5))
Example 5: python concatenate strings
x = ‘apples’
y = ‘lemons’
z = “In the basket are %s and %s” % (x,y)
Example 6: Python - String Concatenation
a = "Hello"
b = "World"
c = a + b
print(c)