📅  最后修改于: 2022-03-11 14:46:54.304000             🧑  作者: Mango
old_string= '"python"' new_string=old_string.replace('"','') print("The original string is - {}".format(old_string)) print("The converted string is - {}".format(new_string))