write the program to replace all the elements of a guven value with new value
1
Expert's answer
2022-06-07T17:37:57-0400
def main():
line = input('Enter the line: ')
old = input('enter the old value: ')
new = input('enter the new value: ')
print(line.replace(old, new))
main()
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments