- Home
- Course Category
- Course Result
- Course Detail
Hot Line: 08377052947
-
TeacherManoj Sir
-
Category
Programming, Website Development
-
Duation
20 hours
-
Reviews(42 review)
-
Call Us for Details
Course Introduction
Python programming language is a general-purpose, dynamic programming Language.Python language have a large library of packages which makes python for beginners a language of choice.
Python Programs For Practice
In the program below, we used the replace method to repalce a character in a string.
Source Code:
Python Program To Replace All Occurrences Of ‘A’ With $ In A String
# PYTHON PROGRAM TO REPLACE ALL OCCURRENCES OF ‘A’ WITH $ IN A STRING
string=input("Enter string:")
string=string.replace('a','$')
string=string.replace('A','$')
print("Modified string:")
print(string)
Output
Enter string:AAbbbaaa
Modified string:
$$bbb$$$