Python_列表中的偶數變成他的平方

#編寫程序將列表中的偶數變成他的平方 def word_len(s): # s = [i ** 2 for i in s if i % 2 == 0] L = [] for i in s: if(i % 2 == 0): L.append(i** 2) else: L.append(i)
相關文章
相關標籤/搜索