YouTip LogoYouTip

Python Exercise Example86

# Python2.x Python Exercise Instance 86 [![Image 3: Python 100 Examples](#) 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 [![Image 4: Python 100 Examples](#) Python 100 Examples](#)
← Python Exercise Example87Python Exercise Example85 β†’