-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
71 lines (71 loc) · 1.61 KB
/
test.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
# Python 2.7 code: run with python2coffee.py -p 2 test.py
'###'
"###"
'# Hello {}, your age is {}'.format(name, age)
if not isinstance(x, str): x = str(x)
### This is a comment
for item in range(17): # up to 16
assert 0 <= item < 17
print item if item % 2 == 1 else item/2
for item in range(2, 17):
print str(item), '->', hex(item + 1)
str(int('123')) == '123'
int(str(123)) == 123
ord(chr(27)) == 27
chr(ord('A')) == 'A'
"\a\f\\\z\U00123456#" != r"\a\f\\\z\U00123456#"
re.sub(r' [(\[]*(\d+)/(\d+)/(\d+)[)\]]* ', repl, string, flags=re.IGNORECASE)
a = range(17)
b = range(2, 17)
c = range(2, 17, 3)
L = []
for item in range(2, 17, 3):
L.append (lambda: item)
L.append (lambda item=item: item)
L.extend ([item, item+1])
L.extend (L)
L.extend ([x**2 for x in L])
max(L) == max(*L)
[item ** 2 for item in range(2, 17, 3)]
def mysum(initial, *args):
this = initial
for arg in args:
this += arg
return this
def oneline(x): x += 5; return x
def oneline2(x): x += 5
def twoline(x):
x += 5; return x
def twoline2(x):
x += 5
def defaults(x = 5, y = None): pass
while True:
item = f()
if item:
print item
elif forever:
continue
else:
break
if not done: break
while not done: break
class Point:
def __init__(self, x, y):
self.x = x
self.y = y
def translate(self, dx, dy):
self.x += dx
self.y += dy
def __str__(self):
this = self
return "({}, {})".format(self.x, self.y)
class Accumulator:
def __init__(self):
self.value = 0
def adder(self):
def add(x):
self.value += x
return add
def getter(self):
return lambda: self.value
get = lambda self: self.value