运行下列程序,输出的结果是?( )
s1 = "Good \n"
s2 = "Morning."
print(s1 + s2)
print(len(s1))
Good Morning.
6
Good
Morning.
7