-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnswers.txt
More file actions
61 lines (61 loc) · 847 Bytes
/
Answers.txt
File metadata and controls
61 lines (61 loc) · 847 Bytes
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
answer,the_value
5,0
0b101,1
Error,0
bin,0
10*100,0
100**100,0
10**100,1
10*5/5,0
"{1, 2, 2, 3}",0
"{1, 2, 1, 3}",0
"{3, 3, 1, 2}",0
"{1, 2, 1, 2}",1
0,0
3,0
5,0
6,1
"0 in [1, 2]",0
"1 in [1, 2]",1
"1 not in [1, 2]",0
"2 not in [1, 2]",0
'b',0
'B',0
'c',1
'C',0
"15 - int('5')",0
"15 - str(5)",0
"15 % 2",1
"15 // 2",0
"(85, 200)",0
"(85, 150)",0
"(150, 200)",0
"Grešku",1
"10**40 == 10**40 + 1",0
"10**40 != 10**40",0
"9.0**40 == 9.0**40 + 1",1
"9.0**40 != 9.0**40",0
"a = 2",0
"a = 3",0
"a = 5",0
"a = 5*5",1
do,0
loop,0
each,0
while,1
"print('a'+'a', 'a', sep='')",0
"print('a'+'a', 'a', sep='+')",1
"print('a'+'a', '+a', sep=',')",0
"print('a'+'a', '+a', sep='+')",0
a[1],0
a[:1],1
a[1:2],0
a[:0],0
"range(10, 17, 2)",0
"range(10, 16, 2)",0
"list(range(10, 17, 2))",1
"list(range(10, 16, 2))",0
'henry+v+',0
'henry V ',0
'henryV',0
'henryv',1