def fun1(a):
for i in range(len(a)):
a[i] = a[i] * a[i]
return a
|
|
|
|
|
It takes an array as parameter and returns the same array with each member squared. EDIT: Since you modified your question from 'What does this function do' to 'What is some code to execute this function', here is an example:
The output will be:
Because the function modifies the list in place, test1 is also modified. |
||||||
|
|
|
It will go through your List and multiply each value by itself. Example
After that function a would look like this:
|
||||||
|
|
|
It's a trivial function that could be replaced with the one-liner:
|
||||||||||||
|
|
|
it multiplies each element of the array "a" with itself and stores the results back in the array. |
||
|
|
|
|
a is passed as a list , I assume. It squares each element of the list and returns the list. |
||
|
|
|
|
It squares every element in the input array and returns the squared array. So with result is: |
||
|
|

beginnerdoes not fully reflect quality of the question – SilentGhost Oct 16 at 9:20