python 隨筆

Iris
Sep 24, 2021

--

  • [::-1] 順序相反操作
  • [-1] 讀取倒數第一个元素
  • [3::-1] 從index 3開始翻轉讀取
  • 隨機排序

import random

random.shuffle(list)

  • descending order

list.sort(reverse = true)

  • Counter 用法
input/output example

--

--

Iris

Machine/Deep Learning, Image Processing and Computer Vision