Posts by Bruno Viana • 16 points
1 post
-
0
votes2
answers46
viewsA: Print a new vector by changing the order of the elements of the original vector
Every vector loads: Index and Value v1 = [2,51,68,10] print(v[0]) #2 print(v[1]) #51 print(v[2]) #68 print(v[3]) #10 As apparently you want to change the position without obeying any logic (i.e from…