if
x=5
if x==1:
print "x is 1"
else:
print "x is not 1"
while
counter=0
while counter < 3:
print str(counter)
counter += 1
for
for x in xrange(3):
print str(x)
x=5
if x==1:
print "x is 1"
else:
print "x is not 1"
counter=0
while counter < 3:
print str(counter)
counter += 1
for x in xrange(3):
print str(x)