list_1 = ['aaa','bbb'],那么len(list_1)的结果是:
查看答案
在Python中定义函数,那个是正确的?
A. define myfun(){}
B. define myfun():pass
C. def myfun(){}
D. def myfun():pass
Python中,len(lt["hell"])的值是多少?
A. 1
B. 2
C. 3
D. 4
a = [100,200,300]b = [100,200,300]下面代码输出为True的是:
A. a==b
B. a is b
C. a = b
D. a.equals(b)
如下:a=[1,2,3,4,5,6,7,8,9,10],需要取出1,2,3,4,5五个元素的切片运算为:
A. a[0:5]
B. a[0:6]
C. a[1:5]
D. a[1:6]