下面代码的输出结果( )。 s1 = "The python language is a scripting lan guage."
s1.replace('scripting', 'general')
print(s1)
A.['The', 'python', 'language ', 'is', 'a', 'scripting', 'language.']
B.The python language is a scripting lang uage.
C.The python language is a general langu age.
D.系统报错