- 首页
- 法律职业资格
-
1.print(2,5)输出结果:
-
2.str8='a' print(str8*2)输出结果为
-
3.Python3.x语句print(1,2,3,sep=':')的输出结果为()。
-
4.Python语句“ for i in range(1,21,5): print(i,end=' ')”的输出结果为( )。
-
5.执行下面代码,请问输出结果为:name="黑黑"def f1(): print(name)def f2(): name= "白白" print(name)
-
6.tuple=('runoob', 786 , 2.23, 'john', 70.2 )print(tuple[1:3])输出结果为:
-
7.print(type({})) 的输出结果是()
-
8.print(‘5,6,7’)的输出结果是( )
-
9.import numpy as np a=np.arange(24) b=a.reshape(4,2,3) print(b.ndim) 以上代码输出结果为?
-
10.下面语句的输出结果是什么?Print("hello" 'world') #hello与world间隔两个空格