Python语句print(type([1,2,3,4]))的输出结果是()。
A.<class ‘tuple'>
B.<class‘dict'>
C.<class ‘set'>
D.<class ‘list'>
第1题:
Python3.x和Python2.x唯一的区别就是:print在Python2.x中是输出语句,而在Python3.x中是输出函数。
此题为判断题(对,错)。
第2题:
语句:print sgn(-6^2)+Abs(-6^2)+int(-6^2)的输出结果是( )
A.-36B.1C.-1D.-72
52967.以下语句
a=sqr(3)
print format(a,"####.###")
的输出结果是( )
A.1.732
B. 0001.732
C.###1.732
D. 1.7320
第3题:
(7)执行下列语句后,输出结果是。 s$="ABCDEFG" Print InStr(s$,"efg") Print LCase$(s$)
第4题:
执行下列语句后,输出结果是______。
s$="ABCDEFG"
Print lnStr(s$,"efg")
Print LCase$(s$)
第5题:
有如下程序:
Private type stu
X as string
Y as integer
End type
Private Sub Command1_Click()
Dim a as stu
a.x=”ABCD”
a.Y=12345
print a
End Sub
程序运行时出现错误,错误的原因是
A)Type定义语句没有放在标准模块中
B)变量声明语句有错
C)赋值语句不对
D)输出语句print不对
第6题:
语句Print Format(Int(12345.6789*100+0.5)/100,”0000,0.00”)的输出结果是( )。
A.12,3456.8
B.12,34.5
C.12,3 45
D.12,345.68
第7题:
A.a
B.A
C.65
D.chr(65)
第8题:
Python3.x语句print(1,2,3,sep=’:’)的输出结果为()。
第9题:
c=[1]deffore():c.append(2)fore()print(c)输出结果是()
第10题:
语句Print Format("HELLO","<")的输出结果是()
第11题:
对
错
第12题:
第13题:
语句:print 5*5\5/5输出结果是( )
A.5
B.25
C.0
D.1
第14题:
(8)设当前日期为2007年12月27日,星期四,则执行下列语句后的输出结果是。 Print Day(Now) Print Month(Now) Print Year(Now) Print Weekday(Now)
第15题:
有如下语句: Type Student Name As String Age As Integer Sex As String End Type Dim Stu As Student With Stu .Name="张红" .Age=22 .Sex="女" End With 执行Print Stu.Age语句后的结果是
A.张红
B.22
C.“女”
D.Age
第16题:
语句Print Sgn(-6^2)+Abs(-6^2)+Int(-6^2)的输出结果是( )。
A.-36
B.1
C.-1
D.-72
第17题:
执行以下语句后,输出的结果是 a$="Good" b$="Afternoon" Print a$+b$ Print a$&b $
A.Goodaftenoon GoodAfternoon
B.Good+ GoodAfternoon
C.Good+ Good&Afternoon
D.Good Good&
第18题:
有如下程序: Private Type stu X As String Y As Integer End Type Private Sub Command1 Click( ) Dim a As stu X="ABCD" Y=12345 Print a End Sub 程序运行时出现错误,错误的原因是( )。
A.Type定义语句没有放在标准模块中
B.变量声明语句有错
C.赋值语句不对
D.输出语句Print不对
第19题:
在Python3中,对于一个列表l=["Hello","World"],以下哪些语句可以正常输出"HelloWorld"。()
第20题:
语句Print “123”+45的输出结果是“12345” 。
第21题:
Python 3.x和Python 2.x唯一的区别就是:print在Python 2.x中是输出语句,而在Python 3.x中是输出函数。
第22题:
语句Print(a=2)And(b=-2)的输出结果是()
第23题:
第24题: