Python實用黑科技——解包元素(2)__Python

來源:互聯網
上載者:User

需求:
前面的文章講的是使用變數的個數需要和迭代器資料變數的元素個數相同的方法,但更多的時候確實不想根據元素個數n來定義相應多的變數,而是希望用較少的變數(

def drop_first_last(grades):    def avg(my_list):        return sum(my_list) / len(my_list)    first, *middle, last = sorted(grades)    return avg(middle)

當然,“星運算式”可以在任何位置,對應的解包元素存入之後,都會形成一個列表(即使沒有對應元素,也是空列表)。這裡可以再想像一個例子,你正在查看自己近1整年的工資流水,你想計算一下前11個月的工資平均值和當月的工資進行比較,自然可以這麼做:

salary_record = (9000, 9000, 12000, 9000, 7000, 8000, 9000, 9000,                 10000, 10000, 8500, 10500)*trailing_months, current_month = salary_recordtrailing_avg = sum(trailing_months) / len(trailing_months)result = current_month > trailing_avg

擴充:
上面舉的例子也許會讓讀者覺得多此一舉,畢竟無論是元組還是列表,用更多其他方式來擷取相應的結果,比如第一個可以直接這麼擷取:

middle_avg = sum(sorted(grades)[1 : len(grades) - 1]) / (len(grades) - 2)

當然還有很多辦法,這就看大家覺得用什麼方式實現更好的表達自己思想了。此外,“星運算式”對處理一種含有多個長度不等元組組成的列表的資料,有他自己獨特的優勢:

records = [        ('Jason', 'SE', 6),        ('Lee', 'Python'),        ('Jason', 'Web', 2),        ]def show_jason(x, y):    print('Jason', x, y)def show_lee(s):    print('Lee', s)for tag, *args in records:    if tag == 'Jason':        show_jason(*args)    elif tag == 'Lee':        show_lee(*args)In [67]: runfile('/home/jason/codes/test.py', wdir='/home/jason/codes')Jason SE 6Lee PythonJason Web 2

這裡還可以舉一個求列表元素和的有趣的遞迴方法:

def sum(items):    head, *tail = items    return head + sum(tail) if tail else headsum(range(10))Out[71]: 45

當然,大家都懂得,遞迴從來都不是一個解決問題的好辦法,所以看看也就行了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.