摘要: ##Python3 replace()方法 ###实例1 def main(): text = 'python3, word!' text1 = text.replace('python3', 'Hello') print(text1) if __name__ == '__main__': main 阅读全文
posted @ 2020-04-10 19:12 莫贞俊晗 阅读(583) 评论(0) 推荐(0) 编辑