- Home
- Python Examples
- Logical Operators
Python - Logical Operators
विवरण :
कोई विवरण नहीं है |
सोर्स कोड :
a=True b=False print ("a and b= " , a and b) print ("a or b= " , a or b) print ("not b= " , not a)
आउटपुट :
a and b= False a or b= True not b= False