This program is written in the Python programming language and it manipulates a given string in two steps:
Finally, the program prints both the original string "tutor joes" and the modified string "@utor joes" to the console.
str="tutor joes" print("Given String :",str) ch = str[0] str = str.replace(ch, '@') str = ch + str[1:] print("After String :",str)
Given String : tutor joes After String : tu@or joes
Learn All in Tamil © Designed & Developed By Tutor Joes | Privacy Policy | Terms & Conditions