📌  相关文章
📜  Python - Comment faire pour supprimer les cotes de Chaîne - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:54.304000             🧑  作者: Mango

代码示例1
old_string= '"python"'  new_string=old_string.replace('"','')  print("The original string is - {}".format(old_string)) print("The converted string is - {}".format(new_string))