Computer Science, asked by johnycax123, 9 months ago

I need help with the Edhesive, code practice 9.6 question 1 in Python code
How many values to add to the array:
12
[14, 64, 62, 21, 91, 25, 75, 86, 13, 87, 39, 48]

Answers

Answered by rajdeepshaw968
0

Answer:

48

Explanation:

Please mark it as brainlest answer.

Answered by whelmrick7202
0

Answer:

def printIt(a):

   for r in range(len(a)):

       for c in range(len(a[0])):

           print(a[r][c], end = " ")

       print(" ")

   print(" ")

   

   for r in range(len(a)):

       x = a[r][r]

       for c in range(len(a[0])):

           a[r][c] = x

           

   for r in range(len(a)):

       for c in range (len(a[0])):

           print(a[r][c], end = " ")

       print(" ")

   

N = []

N.append([1, 2, 3, 4, 5])

N.append([1, 2, 3, 4, 5])

N.append([1, 2, 3, 4, 5])

N.append([1, 2, 3, 4, 5])

printIt(N)

Explanation:

<3

Similar questions