P4B Quiz (10):元組資料型態介紹與使用 by KC 2023-03-23 written by KC 2023-03-23 0 comment 855 Welcome to your quiz -「 P4B Quiz (10):元組資料型態介紹與使用」 Name Email 1. 以下執行結果是什麼? saywhat = ('Simple', 'Learn', 'is', 'great')saywhat[-1] 'Simple' 'Learn' 'is' 'great' 2. 以下執行結果是什麼? A = (1, 2, 3, 4, 5, 6)A[1:4] (1, 2, 3, 4) (2, 3, 4, 5) (1, 2, 3) (2, 3, 4) 3. 以下執行結果是什麼? A = (1, 2, 3, 4, 5, 6)len(A) 3 4 5 6 4. 以下執行結果是什麼? A = ((11, 12, 13), [21, 22, 23])A[1] (11, 12, 13) [11, 12, 13] (21, 22, 23) [21, 22, 23] 5. 以下執行結果是什麼? A = ((11, 12, 13), [21, 22, 23])A[0][1] 11 12 21 22 6. 以下執行結果是什麼? len(("Python", 10)) 6 8 2 10 7. 以下執行結果是什麼? letters = ("s", "i", "m", "p", "l", "e")print(letters[:3]) ('s', 'i') ('s', 'i', 'm') ('i') ('m') 8. 以下執行結果是什麼? letters = ("s", "i", "m", "p", "l", "e")print(letters[4:6]) ('l', 'e') ('p', 'l', 'e') ('p', 'l') ('m', 'p', 'l') 9. 以下執行結果是什麼? fruits = ("apple", "banana", "orange", "cherry")fruits[2] = "grape"print(fruits) ('apple', 'banana', 'orange', 'cherry') ('apple', 'banana', 'grape', 'cherry') ('apple', 'grape', 'orange', 'cherry') TypeError 10. 以下執行結果是什麼? my_tuple = ('b', 'a', 'n', 'a', 'n', 'a')print(my_tuple.count('n')) 0 1 2 3 Time's up Share 0 FacebookTwitterPinterestEmail previous post P4B Quiz (9):串列資料型態介紹與使用 next post P4B Quiz (11):集合資料型態介紹與使用