执行以下语句后,输出的结果是 a$="Good" b$="Afternoon" Print a$+b$ Print a$&b $
A.Goodaftenoon GoodAfternoon
B.Good+ GoodAfternoon
C.Good+ Good&Afternoon
D.Good Good&
第1题:
4、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+
第2题:
2.执行语句“x=2.3; print(‘x=’,x)”的输出结果是___________。
第3题:
39、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+
第4题:
已知x=2,y=10,z=20,以下语句执行后的结果是() if x<y: if z>30: print(“错误”) else: print(“正确”)
A.错误
B.正确
C.无输出
D.语法错误
第5题:
4、以下语句的输出结果是 for i in range(5): print(i) print(i)
A.4
B.5
C.6
D.0