Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise3.2

Snippet info

Language

Python

Visibility

public

Author

truongngocan

Created

2016-09-20T19:24:07Z

Updated

2016-09-20T19:24:57Z

input = -1
if input == 0:
    print(input, "This is zero number")
if input > 0:
    print(input, "This is positive number")
else:
    print(input, "This is negative number")
    
#Nếu số < 0: this is negative number
#Nếu số = 0: this is zero
#Nếu số > 0: this is positive number
INFO