×
FREE ASSISTANCE FOR THE INQUISITIVE PEOPLE
Tutorial Topics
X
softetechnologies
Pattern 04 String Example South point school assignment 16
use of replace() function - Python Language
1651    Arnab De    18/01/2021

Use of replace() in Python language

replace() function in python is used for replace the charecter or a set of charecter(called string) with other chracter or set of character of a specified string.

basic Syntax

<string variable name>.replace(<old string>,<new string>)

Example 1

Write a Python program to get a string from a given string where all occurrences of its first char have been changed to '#'.
Sample String : 'array'
Expected Result : '#rr#y'

str1=input("Enter A string : ")
char = str1[0]
str1 = str1.replace(char, '$')
print(str1)

Example 2

Write a Python program to get a string from a given string where all occurrences of its first char have been changed to '#', except the first char itself.
Sample String : 'array'
Expected Result : 'arr#y'

str1=input("Enter A string : ")
char = str1[0]
str1 = str1.replace(char, '$')
str1 = char + str1[1:]
print(str1)
Pattern 04 String Example South point school assignment 16
softetechnologies
Author Details
Arnab De
I have over 16 years of experience working as an IT professional, ranging from teaching at my own institute to being a computer faculty at different leading institute across Kolkata. I also work as a web developer and designer, having worked for renowned companies and brand. Through tutorialathome, I wish to share my years of knowledge with the readers.
Enter New Comment
Comment History
No Comment Found Yet.
Rabindranath Tagore
It is no easy task to lead men. But it is easy enough to drive them.
Rabindranath Tagore
3855
75.03
Today So Far
Total View (Lakh)
softetechnologies
26/05/2018     52291
25/06/2018     44059
01/01/2018     42982
28/06/2017     40718
02/08/2017     39573
01/08/2017     33742
06/07/2017     33559
15/05/2017     32837
14/07/2017     29127
11/09/2018     29120
softetechnologies