-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbook-sorting.py
executable file
·35 lines (33 loc) · 1.2 KB
/
book-sorting.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/python
import sqlite3 as db
conn = db.connect('library.db')
conn.row_factory = db.Row
cursor = conn.cursor()
choose = input("Choose your oder method(1-3): ")
if choose == 1:
cursor.execute("select * from books order by title asc;")
rows = cursor.fetchall()
for row in rows:
print(" %s %s %s" % (row["title"], row["author"],row["edition_year"]))
print("")
print(" The books are sorted by Auhor (asc)!")
conn.commit()
elif choose == 2:
cursor.execute("select * from books order by author asc,title desc;")
rows = cursor.fetchall()
for row in rows:
print(" %s %s %s" % (row["title"], row["author"], row["edition_year"]))
print("")
print(" The books are sorted by Auhor (asc) and Title (desc)!")
conn.commit()
elif choose == 3:
cursor.execute("select * from books order by edition_year desc, author desc , title asc;")
rows = cursor.fetchall()
for row in rows:
print(" %s %s %s" % (row["title"], row["author"], row["edition_year"]))
print("")
print(" The books are sorted by Edition year(desc) , Author(desc) and Title(asc)!")
conn.commit()
conn.close()
print("")
print(" The set of Books has been sorted successfully.")