課程
/后端開發
/Python
/初識Python
def?square_of_list(x): for?x?in?L: y=x*x return?y print?square_of_list([1,2,3,4,5])
2017-07-11
源自:初識Python 7-3
正在回答
def?square_of_edge(L): ????n1?=?[] ????for?i?in?L: ????????n1.append(i?*?i) ????return?n1 print?square_of_edge([1,?2,?3,?4,?5])
def?square_of_list(L): ????return?[i**2?for?i?in?L] print?square_of_list([1,2,3,4,5])
def square_of_list(L): ? n = len(L) ? x = 0 ? while x <= n: ? ? ? print L[x] * L[x] ? ? ? x = x + 1print square_of_list([1,2,3,4,5])
def?square_of_list(L): ????return?sum([x**2?for?x?in?L]) print?square_of_list([1,2,3,4,5])
def square_of_list(L):? ? y=0 ? ?for x in L:? ? ? ? y+=x*x ? ?return yprint (square_of_list([1,2,3,4,5]))
舉報
學python入門視頻教程,讓你快速入門并能編寫簡單的Python程序
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號-11 京公網安備11010802030151號
購課補貼聯系客服咨詢優惠詳情
慕課網APP您的移動學習伙伴
掃描二維碼關注慕課網微信公眾號
2018-09-26
2017-07-17
2017-07-11
def square_of_list(L):
? n = len(L)
? x = 0
? while x <= n:
? ? ? print L[x] * L[x]
? ? ? x = x + 1
print square_of_list([1,2,3,4,5])
2017-07-11
2017-07-11
def square_of_list(L):
? ? y=0
? ?for x in L:
? ? ? ? y+=x*x
? ?return y
print (square_of_list([1,2,3,4,5]))