190731 DataFrame DropNA How
最近在 DataCamp 上學 Python http://www.datacamp.com ------------------------------------------- 下面這題在 dropna 中,帶入了 how='any' 與 how='all' 一時間,不是很了解其意義,網路查了一下,找到以下連結中的說明 https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.dropna.html any: 只要有 NA 存在,則 Drop all: 全部都是 NA,才 Drop ------------------------------------------ 雙斜線 // 以下是 Google 到的結果 Python has two division operators, a single slash character for classic division and a double - slash for “floor” division (rounds down to nearest whole number). 單斜線 / :進行的是一般除法。 雙斜線 // :進行的是整數除法。