题目6单选题
下面代码的输出结果是: s1 = "The python language is a scripting language." s2 = s1.replace('scripting','general') print(s2)A. The python language is a scripting languageB. The python language is a general languageC. ['The', 'python', 'language', 'is', 'a', 'scripting', 'language.']D. 系统报错