Ewrite the code a=10 if a>0 print ( " a is positive ) otherwise print ("negative "
Answers
Answered by
0
in python,
a = 19
if a>0:
print("a is positive ")
else:
print ("negative")
Similar questions