23. 執行以下 Python script,會輸出什麼?print({i:i*i for i in range(3)}) (A) {0: 0, 1: 1, 2: 4} (B) {0,1,4} (C) [(0,0),(1,1),(2,4)] (D) {0, 1, 4, 9}