DataFrame (numbers,columns=['set_of_numbers']) df['equal_or_lower_than_4?'] = df['set_of_numbers'].apply(lambda x: 'True' if x <= 4 else ...
確定! 回上一頁