xxxxxxxxxx
x="String"
y="Python"
d="+"
c = "We can concatenation " + y + x + "with" + d + "Operator"
print(c)
xxxxxxxxxx
first_name = 'Albert'
last_name = 'Einstein'
full_name1 = first_name + last_name
print(full_name1)
full_name2 = first_name + ' ' + last_name
print(full_name2)
# Output - AlbertEinstein
# Output - Albert Einstein
xxxxxxxxxx
my_list = ['a', 'b', 'c', 'd']
my_string = ','.join(my_list)
# Output = 'a,b,c,d'
xxxxxxxxxx
x = ‘apples’
y = ‘lemons’
z = “In the basket are %s and %s” % (x,y)
xxxxxxxxxx
# Хоёр мөрийн агуулгыг нэг мөр болгон нэгтгэхийн тулд Python нь + операторыг өгдөг.
# Мөрүүдийг холбох энэ процессыг холболт гэж нэрлэдэг.
x = 'One fish, '
y = 'two fish.'
z = x + y
print(z)
# Output: One fish, two fish.