riddle 4 (python)

a python riddle – figure out what each line does without running the code. Bonus points for being able to clearly explain what happens, and why.

test.py:

import test
class Test:
    pass

t = Test()
print "test.Test: " + str(isinstance(t, test.Test))
print "Test: " + str(isinstance(t, Test))

[More programming riddles]

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s