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 :

  1. def change_sring(str1):  
  2.       return str1[-1:] + str1[1:-1] + str1[:1]  
  3.         
  4. print(change_sring('abcd'))  
  5. print(change_sring('12345'))  

Console :

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

Post your code through Disqus