Search This Blog

Friday, October 25, 2013

Snake's magic

Simple example:

!#/usr/bin/env python

x = 'abcdef'

if x.find('z'):
    print 'True'
else:
    print 'False'

What result will you get after run this python code ? False ?, are you sure  ?