w3resource logo


Python Exercises

Python: Change a given string to a new string where the first and last chars have been exchanged


Write a Python program to change a given string to a new string where the first and last chars have been exchanged.

Sample Solution :

Python Code :

def change_sring(str1):
      return str1[-1:] + str1[1:-1] + str1[:1]
	  
print(change_sring('abcd'))
print(change_sring('12345'))

Console :

Copy and paste the above code and press "Enter key" to execute :

Post your code through Disqus