1x="String"
2y="Python"
3d="+"
4c = "We can concatenation " + y + x + "with" + d + "Operator"
5print(c)
1my_list = ['a', 'b', 'c', 'd']
2my_string = ','.join(my_list)
3# Output = 'a,b,c,d'
1>>> orig_string = 'Hello'
2>>> orig_string + ', world'
3'Hello, world'
4>>> orig_string
5'Hello'
6>>> full_sentence = orig_string + ', world'
7>>> full_sentence
8'Hello, world'
9