Python “多元”賦值

Python “多元”賦值

Python “多元”賦值

 

 

資料來源: https://github.com/stormzhang/free-programming-books/blob/master/assets/python/Python%E6%A0%B8%E5%BF%83%E7%BC%96%E7%A8%8B%EF%BC%88%E4%B8%AD%E6%96%87%E7%AC%AC%E4%BA%8C%E7%89%88%EF%BC%89%E5%B8%A6%E7%9B%AE%E5%BD%95.pdf 的p65~p66

 

# -*- coding: UTF-8 -*-

#Python 程式過長時的換行語法[\] + 多元賦值

weather_is_hot,shark_warnings=1,0 #weather_is_hot=1;shark_warnings=0

 

if (weather_is_hot == 1) and \

(shark_warnings == 0):

    print(shark_warnings);

    print(weather_is_hot);

   

 

 

 

 

 

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *