Answers for "Write a Python program to get a single string from two given strings, separated by a space and swap the first two characters of each string."

0

Write a Python program to get a single string from two given strings, separated by a space and swap the first two characters of each string.

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'))
Posted by: Guest on April-08-2021

Code answers related to "Write a Python program to get a single string from two given strings, separated by a space and swap the first two characters of each string."

Python Answers by Framework

Browse Popular Code Answers by Language