Python Online IDE
Python Editor
Showing posts with label
Python | Lesson 1 | Boolean
.
Show all posts
Showing posts with label
Python | Lesson 1 | Boolean
.
Show all posts
Python | Lesson 1 | Boolean
#Boolean values are True or False.
print
(
50
>
60
)
print
(
34
<
20
)
a
=
45
b
=
56
if
a
>
b
:
print
(
"a is greater than b"
)
else
:
print
(
"a is not greater than b"
)
Older Posts
Home
Subscribe to:
Posts (Atom)