Computer Science Related Others Courses AvailableThe Best Codder.blogspot.com
Posts

Logical and Bitwise Not Operators on Boolean

0 min read

 

Logical and Bitwise Not Operators on Boolean

# A Python program that uses Logical Not or ! on boolean
a = not True
b = not False
print a
print b
# Output: False
#         True
Output
0
1
1
0

The outputs of above programs are as expected, but the outputs following programs may not be as expected if we have not used Bitwise Not (or ~) operator before.
 

# A Python program that uses Bitwise Not or ~ on boolean
a = True
b = False
print ~a
print ~b

You may like these posts

  • QuestionsHow do I open a file in Python?How do I access the data or text inside an open file?ObjectivesOpen a text file.Close a file when processing is finished.Read lines of text …
  •  String to List in PythonWe will use the following methods to meet our objective-Using split()Using split() with a separatorUsing strip()Using map()Le…
  • Python Program to Print the Fibonacci sequenceA Fibonacci sequence is the integer sequence of 0, 1, 1, 2, 3, 5, 8....The first two terms are 0 and 1. All other terms are obtained b…
  •  How to Find Factors of Number using Python?num=int(input("enter a number"))factors=[]for i in range(1,num+1):    if num%i==0:       factors.appe…
  •  Ranging from o to 100 celsius to fahrenheit  in python# Ujjwal matoliyaprint("Ujjwal matoliya")for x in range (0,101):    fahrenheit = (x * 1.8) + 32  &nb…
  •  Palindrome program in python languageWhat is a palindrome?A palindrome is a number or letter that remains the same even if the number and letters are inverted.For example:121…

Post a Comment

© 2025Python . The Best Codder All rights reserved. Distributed by