Booleans 1-5. The statement below would print a Boolean value, which one? 以下Python敘述會列印哪個邏輯值? Operators 1. Multiply 10 with 5, and print the result. 印出10乘以5的結果。 2. Divide 10 by 2, and print the result. 印出10除以2的結果。 3. Use the correct membership operator to check if "apple" is present in the fruits object. 使用正確的屬於運算子檢查apple是否屬於fruits物件中。 4. Use the correct comparison operator to check if 5 is not equal to 10. 使用正確的比較運算子檢查5不等於10。 5. Use the correct logical operator to check if at least one of two statements is True. 使用正確的邏輯運算子檢查兩個敘述之一是否至少一個為True。 Lists 1. Print the second item in the fruits list. 印出fruits清單的第二項。 2. Change the value from "apple" to "kiwi", in the fruits list. 改變fruits清單中apple那項成為kiwi。 3. Use the append method to add "orange" to the fruits list. 使用append方法將orange加入fruits後面。 4. Use the insert method to add "lemon" as the second item in the fruits list. 使用insert方法將lemon加入fruits成為第二項。 5. Use the remove method to remove "banana" from the fruits list. 使用remove方法將banana從fruits中去除掉。 6. Use negative indexing to print the last item in the list. 使用負值注標列印清單最後一項。 7. Use a range of indexes to print the third, fourth, and fifth item in the list. 使用注標的區間range列印清單的第三、四、五項。 8. Use the correct syntax to print the number of items in the list. 使用正確的語法列印清單的項目數。