We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 229f8d6 commit 66a739eCopy full SHA for 66a739e
The multi-line form of this code would be
@@ -0,0 +1,10 @@
1
+#!/usr/bin/env python3
2
+
3
+b = int(input("Enter value for b: "))
4
5
+if b >= 0:
6
+ a = "positive"
7
+else:
8
+ a = "negative"
9
10
+print(a)
0 commit comments