(填空题)
代码print(1,2,3,sep=’:’)的执行结果为()。
正确答案
答案解析
略
相似试题
(填空题)
Python3.x语句print(1,2,3,sep=’:’)的输出结果为()。
(填空题)
Python3.x语句print(1,2,3,sep=’,’)的输出结果为()。
(判断题)
在Python3.x中语句print(*[1,2,3])不能正确执行。
(填空题)
代码for i in range(3):print(i,end=’,’)的执行结果为()。
(单选题)
"假设x=2.3456,则执行代码Print Format(x,""00##.0%"")后窗体上的结果为()。"
(单选题)
有如下程序: FOR j=1 TO 3 PRINT TAB(3*j);11*(2*j-1); NEXT j 运行后输出的结果是()
(单选题)
执行下面的程序,窗体上第二行显示的内容是()。 Dim a(3,3)As Integer,i As Integer,j As Integer For i=1 To 3 For j=1 To 3 a(i,j)=(i-1)*2+j Print a(i,j); Nextj Print Next i
(单选题)
下列程序中,第一个Do语句共执行了()次循环。 Dim i As Integer, j As Integer i = 1 Do j = 1 Do Sum = Sum + j j = j + 2 Print j; Loop Until j > 3 i = i + 2 Loop Until i > 10 Print Sum
(单选题)
执行PRINT18/2*3,-3^2命令后,输出结果为()