python 2.7 how to add string at start code example
Example 1: how to add text to a string python
word = "hello"
name = "John"
sentence = word += name
Example 2: python insert text at beginning of string
m = 1
n = 2
yourstring = ("L" * m) + yourstring + ("L" * n)