start
stringlengths
5
368
code
stringlengths
5
143
end
stringlengths
5
527
j = 91
j = j - 1
j = 90
i = '3'; u = 3
u += int(i)
i = '3'; u = 6
a = 10; b = 10
r = b % a
a = 10; b = 10; r = 0
a = '2147483647'
a = int(a)
a = 2147483647
i = 4; s = [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0]]
s[i].append(0)
i = 4; s = [[0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0]]
n = 1
n = n // 5
n = 0
l = [4, 3, 2, 1, 3, 4]; u = [4, 4]
u.append(l[j])
j = False; l = [4, 3, 2, 1, 3, 4]; u = [4, 4, 4]
f = 'BANANA FRIES'; j = ['POTATO', 'CHIPS', '30']
f = ' '.join(j[:-1])
f = 'POTATO CHIPS'; j = ['POTATO', 'CHIPS', '30']
u = 3
u -= 1
u = 2
s = 0
i.append(s)
i = [0]; s = 0
d = deque(['4', '1', '2', '3']); s = 'pop'; u = []
getattr(d, s)(*u)
d = deque(['4', '1', '2']); s = 'pop'; u = []
c = 2; m = 5.960464477539063e-08
m /= c
c = 2; m = 2.9802322387695312e-08
a = 8
a = a + 1
a = 9
i = 12; k = ['like', 'to', 'play']; s = ['I', 'love', 'to', 'dance.', 'I', 'like', 'to', 'dance', 'I.', 'like', 'to', 'play', 'chess.']
k = k[1:] + [s[i]]
i = 12; k = ['to', 'play', 'chess.']; s = ['I', 'love', 'to', 'dance.', 'I', 'like', 'to', 'dance', 'I.', 'like', 'to', 'play', 'chess.']
i = 0; j = 1; k = [[1, 3, 4], [2, 2, 3], [1, 2, 4]]; m = 1; s = 1
s += abs(m - k[i][j])
i = 0; j = 1; k = [[1, 3, 4], [2, 2, 3], [1, 2, 4]]; m = 1; s = 3
h = '10'; v = '4'
h, v = int(h), int(v)
h = 10; v = 4
c = "'"; i = "('K', 'H')"
i = i.replace(c, '')
c = "'"; i = '(K, H)'
c = '?'; p = '?'
p = c
c = '?'; p = '?'
i = 1; k = 1; n = 6; y = {(7): (6, 0)}
y[k] = n, i
i = 1; k = 1; n = 6; y = {7: (6, 0), 1: (6, 1)}
h = 4; v = 3
h = h + v
h = 7; v = 3
f = {(2): [4], (1): [2], (4): []}; s = 3
f[s] = []
f = {2: [4], 1: [2], 4: [], 3: []}; s = 3
c = [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; i = 1
c = [(0) for i in range(26)]
c = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]; i = 1
s = 3
y.append(s)
s = 3; y = [3]
d = ['a', 'b', 'c', 'd']; u = 3; x = 2
d[x], d[u] = d[u], d[x]
d = ['a', 'b', 'd', 'c']; u = 3; x = 2
x = 2
g = x - 1
g = 1; x = 2
c = '2'
j.append(int(c))
c = '2'; j = [2]
e = 0; p = 0; y = [(0, 1), (1, 2)]
y.append((p, e))
e = 0; p = 0; y = [(0, 1), (1, 2), (0, 0)]
a = 2971215073; b = 4807526976
a, b = b, a + b
a = 4807526976; b = 7778742049
q = ']'; s = ['}', '}']
q = s[-1]
q = '}'; s = ['}', '}']
g = ['1', '0', '1', '0', '1']
v.append([int(x) for x in g])
g = ['1', '0', '1', '0', '1']; v = [[1, 0, 1, 0, 1]]
d = 'AABCAAADA'; f = 'AAB'; i = 3; k = 3
f = d[i:i + k]
d = 'AABCAAADA'; f = 'CAA'; i = 3; k = 3
c = 0; s = 3
c = s
c = 3; s = 3
s = '5 5 5'
s = s.split(' ')
s = ['5', '5', '5']
n = OrderedDict([('BANANA FRIES', 12), ('POTATO CHIPS', 30), ('APPLE JUICE', 20), ('CANDY', 15)]); r = 'CANDY'; w = 5
n[r] += w
n = OrderedDict([('BANANA FRIES', 12), ('POTATO CHIPS', 30), ('APPLE JUICE', 20), ('CANDY', 20)]); r = 'CANDY'; w = 5
d = 213; i = 30
d += i
d = 243; i = 30
d = 3; i = 2, 1, 3; j = 0
d += i[j] ^ i[j + 1]
d = 6; i = (2, 1, 3); j = 0
n = 6; o = '0o5'
o = oct(n)
n = 6; o = '0o6'
d = '2'; g = '1'; w = '24'
g, d, w = int(g), int(d), int(w)
d = 2; g = 1; w = 24
b = 4; s = 'AAABB'; u = 'AAABB'
u = s[:b - 1] + s[b:]
b = 4; s = 'AAABB'; u = 'AAAB'
r = [[], [(3, 2), (4, 3)], [(3, 1), (6, 4), (2, 5)], [(4, 1)], [(6, 2)], [( 2, 2)]]; u = 2; v = 3; w = 5
r[u].append((w, v))
r = [[], [(3, 2), (4, 3)], [(3, 1), (6, 4), (2, 5), (5, 3)], [(4, 1)], [(6, 2)], [(2, 2)]]; u = 2; v = 3; w = 5
b = [[1, 3, 4], [2, 2, 3], [1, 2, 4]]; g = 58; i = 2; j = 1
g = g + abs(b[i][j] - b[i][j + 1])
b = [[1, 3, 4], [2, 2, 3], [1, 2, 4]]; g = 60; i = 2; j = 1
a = 6
a = a + 1
a = 7
g = 2; v = 0.26229508196721313 - 0.11475409836065571j
g = str(round(v.real, 2)).index('.')
g = 1; v = (0.26229508196721313-0.11475409836065571j)
k = -3; l = 100; o = 2
k += l * o
k = 197; l = 100; o = 2
a = {(0): '- - -', (6): '- -', (4): '-'}; v = 'cd'; x = 6
a[x] = a[x] + ' ' + v
a = {0: '- - -', 6: '- - cd', 4: '-'}; v = 'cd'; x = 6
o = 2
o += 1
o = 3
c = 2; h = {(1, 2), (-2, -1)}; u = 1
h.add((c, u))
c = 2; h = {(1, 2), (2, 1), (-2, -1)}; u = 1
d = 4
o = d
d = 4; o = 4
j = 10
j += 1
j = 11
f = [(4, 4), (6, 2), (9, 1), (11, 3), (7, 5)]
f.sort()
f = [(4, 4), (6, 2), (7, 5), (9, 1), (11, 3)]
i = 4; k = 121; z = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
k += z[i]
i = 4; k = 152; z = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
c = 'd'; x = {'a': [False, {'a': [...]}], 'd': [False, {}]}
x = x[c][1]
c = 'd'; x = {}
t = 7895462130
g.append(t)
g = [7895462130]; t = 7895462130
f = ['1', '2', '3', '4', '3', '3', '2', '1']
f = [int(i) for i in f]
f = [1, 2, 3, 4, 3, 3, 2, 1]
b = [2, 1]
l = b[0] / (2 * b[1])
b = [2, 1]; l = 1.0
h = '\\s+\\b'; p = '\\s+\\b'
h = p
h = '\\s+\\b'; p = '\\s+\\b'
d = 2; g = 3.141592653589793; n = 3
n = round(g * d)
d = 2; g = 3.141592653589793; n = 6
q = '0 ab'
x, r = q.split()
q = '0 ab'; r = 'ab'; x = '0'
k = 3; u = 6
u = k
k = 3; u = 3
f = 2; q = [1, 3, 5]
q = q[0:f]
f = 2; q = [1, 3]
h = [('a',), ('b',), ('b',)]; q = 'a',; t = 3
t += h.count(q)
h = [('a',), ('b',), ('b',)]; q = ('a',); t = 4
w = 4; x = ['9', '1', '1']
w = int(x[2])
w = 1; x = ['9', '1', '1']
g = 1.4901161193847656e-08; i = 26; q = 1.9999991953372955
q += i * g
g = 1.4901161193847656e-08; i = 26; q = 1.9999995827674866
q = [5, 6]
c = q[1]
c = 6; q = [5, 6]
a = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
a.append(0)
a = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
i = 1
s = i
i = 1; s = 1
a = 5; b = [-2, 2, 1]; d = 7; i = 2
d = a + b[i]
a = 5; b = [-2, 2, 1]; d = 6; i = 2
g = 'aaaaaaaaaab'; h = 6; q = 6; v = ['a', 'a', 'a', 'a', 'a', 'a']
v.append(g[h:q + 1])
g = 'aaaaaaaaaab'; h = 6; q = 6; v = ['a', 'a', 'a', 'a', 'a', 'a', 'a']
i = 0; x = [2, 4, 6, 8, 3]
w = len(x) - 1 - i
i = 0; w = 4; x = [2, 4, 6, 8, 3]
w = [1, 4, 1]; y = [2, 2, 2]
w = y[:]
w = [2, 2, 2]; y = [2, 2, 2]
c = 2; i = 0; m = [5, 4, 4, 2, 2, 8]
e = int(m[i]) - int(c)
c = 2; e = 3; i = 0; m = [5, 4, 4, 2, 2, 8]
l = '11010000001001'; t = '0'
l += '1' if t == '0' else '0'
l = '110100000010011'; t = '0'
d = {(63): 1, (25): 1, (73): 2, (1): 1, (98): 1, (56): 1, (84): 1, (86): 1, (57): 1, (16): 1}; e = 83
d[e] = 1
d = {63: 1, 25: 1, 73: 2, 1: 1, 98: 1, 56: 1, 84: 1, 86: 1, 57: 1, 16: 1, 83: 1}; e = 83
f = [5, 7]; n = 8
f.append(n)
f = [5, 7, 8]; n = 8
a = 1; i = 2
a = a + int(pow(i, 2))
a = 5; i = 2
u = [2, 2, 2, 2, 2, 1, 1, 1, 1]
o = set(u)
o = {1, 2}; u = [2, 2, 2, 2, 2, 1, 1, 1, 1]
p = 1; s = '91011'
s = s[p:]
p = 1; s = '1011'
g = 99910; i = 6; s = '0010001'
g = int(s[:i])
g = 1000; i = 6; s = '0010001'
a = 1; x = 4
a = x % 8
a = 4; x = 4
m = [-5, -1, -1, 2, -2, -3]; t = ['0']; x = 1
t.append('1') if m[x] > 0 else t.append('0')
m = [-5, -1, -1, 2, -2, -3]; t = ['0', '0']; x = 1
c = 5; o = {(1): 5, (2): 2}; r = 2
c = o[r]
c = 2; o = {1: 5, 2: 2}; r = 2
j = 100; l = [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98]
l.append(j)
j = 100; l = [4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100]
l = [1, 2, 3, 4, 10]; x = 20
l.append(x)
l = [1, 2, 3, 4, 10, 20]; x = 20
a = 9; s = 7
s = a
a = 9; s = 9
m = 6; t = [['-'], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []]
t[m].append('-')
m = 6; t = [['-'], [], [], [], [], [], ['-'], [], [], [], [], [], [], [], [], [], [], [], [], [], [], [], []]
i = 5, 0.07; k = [(1, 0.32), (2, 0.32), (3, 0.12), (4, 0.04)]
k.append(i)
i = (5, 0.07); k = [(1, 0.32), (2, 0.32), (3, 0.12), (4, 0.04), (5, 0.07)]
f = 5; n = 1
n = int((3 * f) ** (1.0 / 3.0))
f = 5; n = 2
f = [100, 100, 100]; i = 1; j = 99; k = [1, 2, 100]
j += f[i] - k[i]
f = [100, 100, 100]; i = 1; j = 197; k = [1, 2, 100]
a = 10; b = 1010; i = 58; w = 291112679913228860990
w = w + (a ^ b << i)
a = 10; b = 1010; i = 58; w = 582225359826457722440
x = 1; y = 2; z = 2, 2
y, x = z
x = 2; y = 2; z = (2, 2)
d = 94339769860608; r = []; u = {(140115712619376): [1, 5, 4]}; y = [1, 5, 4]
y = u.get(d, r)
d = 94339769860608; r = []; u = {140115712619376: [1, 5, 4]}; y = []
c = 2; l = {(0): [(1, 2), (1, 5), (2, 1), (3, 2), (3, 5), (4, 1)], (1): [(2, 2), ( 2, 5)]}; r = 4; t = 1
l.setdefault(t, []).append((r, c))
c = 2; l = {0: [(1, 2), (1, 5), (2, 1), (3, 2), (3, 5), (4, 1)], 1: [(2, 2), (2, 5), (4, 2)]}; r = 4; t = 1
c = 90; m = 93; q = [5548, 3648, 9025, 9120, 2607, 3478, 9506, 8827, 8550]
q.append(m * c)
c = 90; m = 93; q = [5548, 3648, 9025, 9120, 2607, 3478, 9506, 8827, 8550, 8370]
k = 1.2000000000000006e-34
k /= 10
k = 1.2000000000000006e-35
g = OrderedDict([('bcdef', 1), ('abcdefg', 1), ('bcde', 1)]); m = 'bcdef'; y = 0
y = g.get(m) or 0
g = OrderedDict([('bcdef', 1), ('abcdefg', 1), ('bcde', 1)]); m = 'bcdef'; y = 1
j = 38; y = 4
y = (j + 2) % 5
j = 38; y = 0
i = '111'; j = ['1', '2', '100', '12303479849857341718340192371', '3084193741082937', '3084193741082938']
j.append(i)
i = '111'; j = ['1', '2', '100', '12303479849857341718340192371', '3084193741082937', '3084193741082938', '111']
g = 4; i = 1000000000; j = 1000000000; u = 4
u, g = i, j
g = 1000000000; i = 1000000000; j = 1000000000; u = 1000000000
j = 85
j += 1
j = 86
k = 123456; y = '00000000000000000000000000000100'
y = bin(k)[2:].zfill(32)
k = 123456; y = '00000000000000011110001001000000'