發表文章

目前顯示的是 3月, 2025的文章
圖片
animal = ["豬", "牛", "羊", '貓'] #python語言的註解comments x = animal.copy() print(animal) x.reverse() #將x反轉reverse print(x) animal.append('狗') print(animal) y = animal.copy() y.reverse() #將x反轉reverse print(y) GOOGLE COLAB執行程式 嵌入EMBED影片與網頁