from array import array
a3=array('u','Hello')
a3.append('!')
a3.insert(5,'?')
print(a3)