P4B Quiz (9):串列資料型態介紹與使用

by KC
0 comment

Welcome to your quiz -「 P4B Quiz (9):串列資料型態介紹與使用

Name
Email
1. 
以下執行結果是什麼?

B = [1, 2, [3, 'a'], [4, 'b']]
B[3][1]

2. 
以下執行結果是什麼?

[1, 2, 3]+[1, 1, 1]

3. 
以下執行結果是什麼?

A = [1]
A.append([2,3,4,5])
print(len(A))

4. 
以下執行結果是什麼?

'Simple Learn'.split()

5. 
以下執行結果是什麼?

'SimpleLearn'.split()

6. 
以下執行結果是什麼?

A=['Simple Learn', 16, 2.3]
del(A[1])
print(A)

7. 
以下執行結果是什麼?

animals = ['bird', 'dog']
color = ['red', 'blue']
animals_color = [animals, color]
print(animals_color)

8. 
以下執行結果是什麼?

x = [1, 3, 5]
y = [2, 4]
x.extend(y)
print(len(x))

9. 
以下執行結果是什麼?

x = [1, 3, 5, 7, 9]
sum(x[-3:])

10. 
以下執行結果是什麼?

L = ['a', 'b', ['cc', 'dd', ['eee', 'fff']], 'g', 'h']
print(L[2][2][0])

error: Content is protected !!