Replace the list value in python list form new value Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code thislist = [“keyboard”, “mouse”, “printer”]print(“Old List”)print(thislist)thislist[1] = “headphone”print(“Updated List”)print(thislist) Output Old List[‘keyboard’, ‘mouse’, ‘printer’]Updated List[‘keyboard’, ‘headphone’, ‘printer’] View All Python Programs