and bool python
i = 5
ii = 10
if i == 5 and ii == 10:
print "i is 5 and ii is 10"
and bool python
i = 5
ii = 10
if i == 5 and ii == 10:
print "i is 5 and ii is 10"
python boolean operators
>>> # The not operator is the opposite of it
>>> not True
False
>>> not False
True
>>> # The and operator is True only if both are are true
>>> True and True
True
>>> False and True
False
>>> False and False
False
>>> # The or operator is True if either of them are true
>>> True or True
True
>>> False or True
True
>>> False or False
False
Which of the following is a Boolean in Python?
>>> type(True)
<class 'bool'>
>>> type(true)
Traceback (most recent call last):
File "<interactive input>", line 1, in <module>
NameError: name 'true' is not defined
boolean in python
#In programming you often need to know if an expression is True or False.
#as you can see below
a = 200
b = 33
if b > a:
print("b is greater than a")
else:
print("b is not greater than a")
boolean in python
#The Python Boolean type is one of Python's built-in data types. It's used to represent the truth value of an expression.
#in this code if you're age is under 13 than a massage will tell you that you are not able to sign up
Name = input("Povide your name : ")
Email = input("Provide your email : ")
age = input("Provide your age : ")
if age < "13":
print("you are not able to sign up")
else:
if age > "13":
print("you are able to sign up")
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us