Quick actions

cmd+k|ctrl+k

Navigation

Languages

vinhquang3.2fix

Snippet info

Language

Python

Visibility

public

Author

vinhquang-pyt

Created

2016-09-27T09:42:38Z

Updated

2016-09-28T09:40:19Z

number = 200
if number <= -1:
    print('Output: %s this is negative number' %number)
elif number >= 1:
    print('Output: %s this is positive number' %number)
else:
    print(0)
INFO