(单选题, )
下面代码的输出结果是( )
S1 = "The python language is a scripting language."
S1.replace('scripting','general')
Print(s1)
A.The python language is a scripting language.
B.系统报错
C.['The', 'python', 'language', 'is', 'a', 'scripting', 'language.']
D.The python language is a general language.
正确答案是A