From 66a739eb427e020be4eb457fc1f42ffd14768f71 Mon Sep 17 00:00:00 2001 From: hackerboyalex <59591652+hackerboyalex@users.noreply.github.com> Date: Fri, 2 Oct 2020 16:36:37 +0530 Subject: [PATCH] Create The multi-line form of this code would be --- The multi-line form of this code would be | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 The multi-line form of this code would be diff --git a/The multi-line form of this code would be b/The multi-line form of this code would be new file mode 100644 index 0000000..13234d0 --- /dev/null +++ b/The multi-line form of this code would be @@ -0,0 +1,10 @@ +#!/usr/bin/env python3 + +b = int(input("Enter value for b: ")) + +if b >= 0: + a = "positive" +else: + a = "negative" + +print(a)