(单选题, )下面代码的输出结果是( ) for s in "HelloWorld": if s=="W": continue

分类: 初级Python开发工程师 发布时间: 2023-11-03 11:12 浏览量: 0

(单选题, )下面代码的输出结果是( ) for s in "HelloWorld": if s=="W": continue print(s,end="")

A.Hello

B.HelloWorld

C.Helloorld

D.World

正确答案是C