Skip to content

Commit bcd9d5f

Browse files
committed
True
1 parent 0149dd5 commit bcd9d5f

File tree

1 file changed

+56
-3
lines changed

1 file changed

+56
-3
lines changed

Logic-Operators.ipynb

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,63 @@
99
},
1010
{
1111
"cell_type": "code",
12-
"execution_count": null,
12+
"execution_count": 2,
1313
"metadata": {},
14-
"outputs": [],
15-
"source": []
14+
"outputs": [
15+
{
16+
"data": {
17+
"text/plain": [
18+
"True"
19+
]
20+
},
21+
"execution_count": 2,
22+
"metadata": {},
23+
"output_type": "execute_result"
24+
}
25+
],
26+
"source": [
27+
"(1 < 2) and (2 < 3)"
28+
]
29+
},
30+
{
31+
"cell_type": "code",
32+
"execution_count": 4,
33+
"metadata": {},
34+
"outputs": [
35+
{
36+
"data": {
37+
"text/plain": [
38+
"True"
39+
]
40+
},
41+
"execution_count": 4,
42+
"metadata": {},
43+
"output_type": "execute_result"
44+
}
45+
],
46+
"source": [
47+
"(1 > 2) or (2 < 3)"
48+
]
49+
},
50+
{
51+
"cell_type": "code",
52+
"execution_count": 5,
53+
"metadata": {},
54+
"outputs": [
55+
{
56+
"data": {
57+
"text/plain": [
58+
"True"
59+
]
60+
},
61+
"execution_count": 5,
62+
"metadata": {},
63+
"output_type": "execute_result"
64+
}
65+
],
66+
"source": [
67+
"(1 == 2) or (2 == 3) or (4 == 4)"
68+
]
1669
}
1770
],
1871
"metadata": {

0 commit comments

Comments
 (0)