-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemps.py
executable file
·33 lines (27 loc) · 1.06 KB
/
temps.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
#!/usr/bin/python
import sqlite3 as db
conn = db.connect('test.db')
cursor = conn.cursor()
cursor.execute("drop table if exists temps")
cursor.execute("create table temps(date text, temp int)")
cursor.execute('insert into temps values("12/01/2011", 35)')
cursor.execute('insert into temps values("12/02/2011", 42)')
cursor.execute('insert into temps values("12/03/2011", 38)')
cursor.execute('insert into temps values("12/04/2011", 41)')
cursor.execute('insert into temps values("12/05/2011", 40)')
cursor.execute('insert into temps values("12/06/2011", 28)')
cursor.execute('insert into temps values("12/07/2011", 45)')
conn.row_factory = db.Row
cursor.execute("select * from temps")
rows = cursor.fetchall()
for row in rows:
print("%s %s" % (row[0], row[1]))
cursor.execute("select avg(temp) from temps")
row = cursor.fetchone()
print("The average temperature for the week was %s" % row[0])
print''
cursor.execute("delete from temps where temp = 40")
cursor.execute("select * from temps")
rows = cursor.fetchall()
for row in rows:
print("%s %s" % (row[0], row[1]))