(15)以下不能输出“Program”的语句是( )。
A)Print Mid("VBProgram", 3, 7)
B)Print Right("VBProgram", 7)
C)Print Mid("VBProgram", 3)
D)Print Left("VBProgram", 7)
第1题:
4、以下语句的输出结果是: print("hello",end='+') print("world")
A.hello+world
B.hello+ world
C.hello world
D.hello+ world+
第2题:
48、以下能输出十进制整数4的语句是()。
A.print(int('0100'))
B.print(int('0100',2))
C.print(eval('0100'))
D.print(eval('0100',2))
第3题:
15、Python 3.x语句 print(1, 2, 3, sep=',') 的输出结果为________________。
第4题:
下面不能输出'Program'的语句是()。
A.Print Mid('VBProgram', 3, 7)
B.Print Right('VBProgram', 7)
C.Print Mid('VBProgram', 3)
D.Print Left('VBProgram', 7)
第5题:
4、以下语句的输出结果是 for i in range(5): print(i) print(i)
A.4
B.5
C.6
D.0