How can strings be concatenated? How can strings be concatenated? python python

How can strings be concatenated?


The easiest way would be

Section = 'Sec_' + Section

But for efficiency, see: https://waymoot.org/home/python_string/


you can also do this:

section = "C_type"new_section = "Sec_%s" % section

This allows you not only append, but also insert wherever in the string:

section = "C_type"new_section = "Sec_%s_blah" % section


Just a comment, as someone may find it useful - you can concatenate more than one string in one go:

>>> a='rabbit'>>> b='fox'>>> print '%s and %s' %(a,b)rabbit and fox