Monday, November 14, 2016

Blog 25

Look at the code below. What does it print?


x=True
y=False

if x and y:
   print "hello"
else:
   print "hi"

15 comments: