网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

Python语句序列“a=121+1.21; print(type(a)”的输出结果是:_____

A.< class 'int'>

B.<class 'float'>

C.<class 'double'>

D.<class 'long'>


参考答案和解析
B
更多 “Python语句序列“a=121+1.21; print(type(a)”的输出结果是:_____A.< class 'int'>B.<class 'float'>C.<class 'double'>D.<class 'long'>” 相关考题
考题 下列语句的输出结果是______。 Print Format(Int(12345.6789*100+0.5)/100,\0000,0.00\)

考题 下列语句的输出结果是 【6】 。Print Format$(1258.6, "000,000.00")

考题 以下语句的输出结果是a=Sqr(26)Print Format$ (a, "$####.###") ( )。A.$5.099B.5.099C.5099D.$0005.099

考题 语句Print 5/4*6\5 Mod 2的输出结果是( )。A.0B.1C.2D.3

考题 以下语句输出结果是______。Print Int(12345.6789 * 100 + 0.5) / 100

考题 Python3.x和Python2.x唯一的区别就是:print在Python2.x中是输出语句,而在Python3.x中是输出函数。此题为判断题(对,错)。

考题 语句:print 5*5\5/5输出结果是( )A.5B.25C.0D.1

考题 语句:print sgn(-6^2)+Abs(-6^2)+int(-6^2)的输出结果是( )A.-36B.1C.-1D.-7252967.以下语句a=sqr(3)print format(a,####.###)的输出结果是( )A.1.732B. 0001.732C.###1.732D. 1.7320

考题 (8)设当前日期为2007年12月27日,星期四,则执行下列语句后的输出结果是。 Print Day(Now) Print Month(Now) Print Year(Now) Print Weekday(Now)

考题 (7)执行下列语句后,输出结果是。 s$="ABCDEFG" Print InStr(s$,"efg") Print LCase$(s$)

考题 有如下语句: 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.22C.“女”D.Age

考题 执行下列语句后,输出结果是______。s$="ABCDEFG"Print lnStr(s$,"efg")Print LCase$(s$)

考题 语句Print Sgn(-6^2)+Abs(-6^2)+Int(-6^2)的输出结果是( )。A.-36B.1C.-1S 语句Print Sgn(-6^2)+Abs(-6^2)+Int(-6^2)的输出结果是( )。A.-36B.1C.-1D.-72

考题 有如下程序:Private type stuX as stringY as integerEnd typePrivate Sub Command1_Click()Dim a as stua.x=”ABCD”a.Y=12345print aEnd Sub程序运行时出现错误,错误的原因是A)Type定义语句没有放在标准模块中B)变量声明语句有错C)赋值语句不对D)输出语句print不对

考题 执行以下语句后,输出的结果是 a$="Good" b$="Afternoon" Print a$+b$ Print a$b $A.Goodaftenoon GoodAfternoonB.Good+ GoodAfternoonC.Good+ GoodAfternoonD.Good Good

考题 语句Print Format(Int(12345.6789*100+0.5)/100,”0000,0.00”)的输出结果是( )。A.12,3456.8SX 语句Print Format(Int(12345.6789*100+0.5)/100,”0000,0.00”)的输出结果是( )。A.12,3456.8B.12,34.5C.12,3 45D.12,345.68

考题 有如下程序: 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不对

考题 语句Print chr(65)的输出结果是() A.aB.AC.65D.chr(65)

考题 在Python3中,对于一个列表l=["Hello","World"],以下哪些语句可以正常输出"HelloWorld"。()A、print("".join(l))B、print(l.join(""))C、print(*l,sep="")D、print(l)

考题 Python3.x语句print(1,2,3,sep=’:’)的输出结果为()。

考题 语句Print “123”+45的输出结果是“12345” 。

考题 Python 3.x和Python 2.x唯一的区别就是:print在Python 2.x中是输出语句,而在Python 3.x中是输出函数。

考题 语句Print Format("HELLO","")的输出结果是()A、HELLOB、helloC、HeD、he

考题 语句Print(a=2)And(b=-2)的输出结果是()A、TrueB、结果不确定C、-1D、False

考题 判断题Python 3.x和Python 2.x唯一的区别就是:print在Python 2.x中是输出语句,而在Python 3.x中是输出函数。A 对B 错

考题 填空题Python3.x语句print(1,2,3,sep=’:’)的输出结果为()。

考题 填空题以下语句输出结果是()Print Int(12345.6789 * 100 + 0.5) / 100。

考题 填空题语句print(3+28/2-12//3)的输出结果是()。