Quick actions

cmd+k|ctrl+k

Navigation

Languages

3,2 thu cong

Snippet info

Language

Python

Visibility

public

Author

theanhvo221

Created

2016-09-29T15:07:15Z

Updated

2016-09-29T15:07:15Z

var = 665
print(var)
if var < 0:
    print('this is negative number')
if var == 0:
    print('this is zero')
if var >0:
    print('this is positive number')
INFO