P4B Quiz (9):串列資料型態介紹與使用 by KC 2023-03-23 written by KC 2023-03-23 0 comment 1.1K Welcome to your quiz -「 P4B Quiz (9):串列資料型態介紹與使用」 Name Email 1. 以下執行結果是什麼? B = [1, 2, [3, 'a'], [4, 'b']]B[3][1] 3 'a' 'b' IndexError 2. 以下執行結果是什麼? [1, 2, 3]+[1, 1, 1] [2, 3, 4] [[1, 2, 3]+[1, 1, 1]] [1, 2, 3, 1, 1, 1] TypeError 3. 以下執行結果是什麼? A = [1]A.append([2,3,4,5])print(len(A)) 5 4 3 2 4. 以下執行結果是什麼? 'Simple Learn'.split() ['SimpleLearn'] ['Simple', 'Learn'] ['S'] ['L'] Hint 5. 以下執行結果是什麼? 'SimpleLearn'.split() ['SimpleLearn'] ['Simple', 'Learn'] ['S'] ['L'] Hint 6. 以下執行結果是什麼? A=['Simple Learn', 16, 2.3]del(A[1])print(A) [16, 2.3] ['Simple Learn', 16] ['Simple Learn', 2.3] ['Simple Learn', 16, 2.3] 7. 以下執行結果是什麼? animals = ['bird', 'dog']color = ['red', 'blue']animals_color = [animals, color]print(animals_color) [['bird'], ['red']] [['dog'], ['blue']] ['bird', 'dog', 'red', 'blue'] [['bird', 'dog'], ['red', 'blue']] 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]) Time's up Share 0 FacebookTwitterPinterestEmail previous post P4B Quiz (8):布林資料型態介紹與使用 next post P4B Quiz (10):元組資料型態介紹與使用