From accbb8a3291132e9411c8c026367d88d43f0625c Mon Sep 17 00:00:00 2001 From: Chaitanya Desai <71583721+itsmekrrish@users.noreply.github.com> Date: Fri, 2 Oct 2020 16:12:44 +0530 Subject: [PATCH] Create boolean Print a message based on whether the condition is True or False --- boolean | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 boolean diff --git a/boolean b/boolean new file mode 100644 index 0000000..480a92b --- /dev/null +++ b/boolean @@ -0,0 +1,7 @@ +a = 200 +b = 33 + +if b > a: + print("b is greater than a") +else: + print("b is not greater than a")