News

Boolean algebra makes it possible to use the same kinds of algebraic techniques we use to solve normal equations involving numbers to establish logical relationships.
age = int(input("How old are you?")) if age >= 70: print("You are aged to perfection!") else: print("You are a spring chicken!") This program uses selection to ...