programming-examples/python/String/Python program to get a single string from two given strings, separated by a space and swap the first two characters of each string.py

6 lines
151 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
def chars_mix_up(a, b):
new_a = b[:2] + a[2:]
new_b = a[:2] + b[2:]
return new_a + ' ' + new_b
print(chars_mix_up('abc', 'xyz'))