Quick actions

cmd+k|ctrl+k

Navigation

Languages

buoi 3

Snippet info

Language

Python

Visibility

public

Author

lekhanhduy.cnmc

Created

2017-04-20T16:37:06Z

Updated

2017-04-20T17:05:38Z

n = -12.5
if n < 0:
    print('This is negative number')
elif n == 0:
    print('This is zero number')
elif n > 0:
    print('This is positive number')
INFO