python boolean assignment code example
Example 1: how to def variable as false in python
#!/usr/bin/python
a = true;
b = true;
if a == b:
print("same");
Example 2: and bool python
i = 5
ii = 10
if i == 5 and ii == 10:
print "i is 5 and ii is 10"