Posts by Reily • 23 points
2 posts
-
2
votes2
answers116
viewsA: Sorting algorithm not working!
I did so: L = [7,4,3,12,8] x = 0 while x < (len(L)-1): if L[x] > L[x+1]: L[x],L[x+1] = L[x+1],L[x] a = x while (L[a] < L[a-1]) and (a!=0): L[a], L[a-1] = L[a-1],L[a] a -= 1 x += 1 print(L)…
-
0
votes1
answer35
viewsQ: How to use database information from another application?
I would like to know the procedures for developing a system using information from a third-party database. Explaining: in my work we use a desktop system (SIABI) for managing processes such as book…