diff --git a/03_Day_Operators/day-3.py b/03_Day_Operators/day-3.py index b14028857..8d104bbf9 100644 --- a/03_Day_Operators/day-3.py +++ b/03_Day_Operators/day-3.py @@ -121,4 +121,10 @@ print(not True) # False - Negation, the not operator turns true to false print(not False) # True print(not not True) # True -print(not not False) # False \ No newline at end of file +print(not not False) # False + + +sample = 3; +print(sample ** sample); + +print(3 > 2 and 4 > 3) \ No newline at end of file