Python Exercise Example86
# Python2.x Python Exercise Instance 86
[ Python 100 Examples](#)
**Title:** Two string connection program.
**Program Analysis:** None.
## Instance (Python 2.0+)
```python
#!/usr/bin/python
# -*- coding: UTF-8 -*-
if __name__ == ' __main__ ':
a = "acegikm"
b = "bdfhjlnpq"
# String Concatenation
c = a + b
print c
The output of the above instance is:
acegikmbdfhjlnpq
[ Python 100 Examples](#)
YouTip