📌  相关文章
📜  Python-测验| Python字符串测验 |问题 19(1)

📅  最后修改于: 2023-12-03 15:19:12.895000             🧑  作者: Mango

Python-测验| Python字符串测验 |问题 19

简介

本测验是关于Python字符串操作的问题集,本题为第19题,旨在测试程序员对于Python字符串中 replace() 方法的理解。

问题描述

请问以下代码的输出结果是什么?

string = "I love Python"
print(string.replace("love", "am in love with"))

A. "I love programming with Python"

B. "I am in love with programming with Python"

C. "I am in love with Python"

D. "I love Python programming with"

答案

B. "I am in love with programming with Python"

解析

replace() 方法可以用来替换字符串中的部分内容,接受两个参数,第一个参数表示要被替换的字符串,第二个参数表示用来替换的新字符串。

在这个例子中,"love" 被替换成了 "am in love with",因此输出结果应该为 "I am in love with programming with Python"。