-
Notifications
You must be signed in to change notification settings - Fork 2
/
in_out.py
75 lines (47 loc) · 1.24 KB
/
in_out.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import os
from problog.extern import problog_export
@problog_export('+str', '+term', '-str')
def open_(filename, term):
# Remove the quotes
filename = filename[1:-1]
if os.path.isfile(filename):
os.remove(filename)
return filename
@problog_export('+str', '+str', '+list')
def format(filename, text, arguments):
with open(filename, 'a') as f:
f.write(text[1:-1].replace('~w', '{}').format(*arguments))
with open(filename, 'r') as f:
contents = f.read()
return []
@problog_export('+str')
def nl(filename):
with open(filename, 'a') as f:
f.write('\n')
return []
@problog_export('+str')
def close_(filename):
return []
@problog_export('+list', '+list', '-list')
def append(l1, l2):
return l1 + l2
@problog_export('+list', '-list')
def sort_no_duplicates(l):
# Remove duplicates
l = list(set(l))
l.sort()
return l
@problog_export('+int', '+list', '-int')
def previousTimeStamp(t, timestamps):
last = []
for i in timestamps:
if i >= t:
return last
last = i
return []
@problog_export('+int', '+list', '-int')
def nextTimeStamp(t, timestamps):
for i in timestamps:
if i > t:
return i
return []