Hello everyone here is my code:
n =[[34,2,55,24,22],[31,22,4,7,333],[87,74,44,12,48]]
for r in n:
   for c in r:
      print(c,end = " ")
   print()
   
sums=[]
for i in n:
  sum=0
  for num in i:
    sum+=int(num)
  sums.append(sum)
print(*sums)
print(*(min(row) for row in n))
    
And here is what it prints out:
34 2 55 24 22 
31 22 4 7 333 
87 74 44 12 48 
137 397 265
2 4 12
I need to change row whith smallest number and bigest number so it means row 1 and 2 like this:
31 22 4 7 333
34 2 55 24 22 
87 74 44 12 48
#end result needs to look like this:
34 2 55 24 22 
31 22 4 7 333 
87 74 44 12 48 
137 397 265
2 4 12
31 22 4 7 333
34 2 55 24 22 
87 74 44 12 48
Please help me i cant use numpy because it doesnt work I tried using it but all it gives are errors.
 
    