Quick actions

cmd+k|ctrl+k

Navigation

Languages

Bai3.2 tien tien

Snippet info

Language

Python

Visibility

public

Author

theanhvo221

Created

2016-09-20T13:54:27Z

Updated

2016-09-29T15:06:28Z

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


INFO