From 1b7761ef6be2d1384107ed6789781f1737545c19 Mon Sep 17 00:00:00 2001 From: STREIN-max <71601569+STREIN-max@users.noreply.github.com> Date: Wed, 21 Oct 2020 09:38:39 +0530 Subject: [PATCH] Update boolasint.py --- boolasint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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])