运行下列程序,输出的结果是?( )
for s in "HelloWorld": if s=="W": continue print(s,end="")
World
Hello
Helloorld
HelloWorld