Skip to content

Commit 66a739e

Browse files
Create The multi-line form of this code would be
1 parent 229f8d6 commit 66a739e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
+10
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)