diff --git a/boolasint.py b/boolasint.py index b48df15..43f9da9 100644 --- a/boolasint.py +++ b/boolasint.py @@ -3,6 +3,6 @@ True -> 1 False -> 0 """ -a = 5 +a = input("Enter your number here") print(isinstance(a, int) + (a <= 10)) -print(["is odd", "is even"][a % 2 == 0]) \ No newline at end of file +print(["is odd", "is even"][a % 2 == 0])