Home Questions Articles Browse Topics Latest Top Members FAQ
I presume you mean something like this: Expand|Select|Wrap|Line Numbers class Foo(): def __init__(self): b = Bar() b.hello() class Bar(): def hello(self): print "hello" f = Foo() $> python test.py hello To others, how do you create those python code blocks? I have been trying but I cannot figure it out :s
Sign in to post your reply or Sign up for a free account.