import numpy as np animals = np.array(['Cow', 'Elephant', 'Snake', 'Camel', 'Praying Mantis']) print(animals) longer_than_5 = np.vectorize(lambda x: len(x) > ...
確定! 回上一頁