'''
This code is use for string replace
'''
data="Life is very hard with Python"
print data
data=data.replace("hard","easy")
print data
Output:
Life is very hard with Python Life is very easy with Python
'''
This code is use for string replace
'''
data="Life is very hard with Python"
print data
data=data.replace("hard","easy")
print data
Life is very hard with Python Life is very easy with Python
0 comments:
Post a Comment