现在有一段程序如下,请问程序运行的结果是什么?
s = "hello my friend!"
if "hello" in s:
print("True")
else:
print("False")
True
False
hello my friend!
报错