Quick actions

cmd+k|ctrl+k

Navigation

Languages

3.2

Snippet info

Language

Python

Visibility

public

Author

hoaivu100413

Created

2016-09-20T17:32:50Z

Updated

2016-09-24T19:04:22Z

#Python 3.5
#lhvu
#3.2

a = 3
if  a < 0:
    print('This is negative number!!!')
elif a == 0:
    print ('This is zero!!!')
else:
    print('this is positive number!!!')
INFO