Skip to content

Commit b05577e

Browse files
committed
True False
1 parent a69b4e6 commit b05577e

File tree

1 file changed

+56
-3
lines changed

1 file changed

+56
-3
lines changed

Comparison-Operators.ipynb

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,63 @@
2929
},
3030
{
3131
"cell_type": "code",
32-
"execution_count": null,
32+
"execution_count": 2,
3333
"metadata": {},
34-
"outputs": [],
35-
"source": []
34+
"outputs": [
35+
{
36+
"data": {
37+
"text/plain": [
38+
"True"
39+
]
40+
},
41+
"execution_count": 2,
42+
"metadata": {},
43+
"output_type": "execute_result"
44+
}
45+
],
46+
"source": [
47+
"1 <= 2"
48+
]
49+
},
50+
{
51+
"cell_type": "code",
52+
"execution_count": 3,
53+
"metadata": {},
54+
"outputs": [
55+
{
56+
"data": {
57+
"text/plain": [
58+
"True"
59+
]
60+
},
61+
"execution_count": 3,
62+
"metadata": {},
63+
"output_type": "execute_result"
64+
}
65+
],
66+
"source": [
67+
"1 == 1"
68+
]
69+
},
70+
{
71+
"cell_type": "code",
72+
"execution_count": 4,
73+
"metadata": {},
74+
"outputs": [
75+
{
76+
"data": {
77+
"text/plain": [
78+
"True"
79+
]
80+
},
81+
"execution_count": 4,
82+
"metadata": {},
83+
"output_type": "execute_result"
84+
}
85+
],
86+
"source": [
87+
"'HI' == 'HI'"
88+
]
3689
}
3790
],
3891
"metadata": {

0 commit comments

Comments
 (0)