C
chad
Given the following code...
#!/usr/bin/python
class cgraph:
def printme(self):
print "hello\n"
x = cgraph()
x.printme()
Does the function print() exist in the cgraph namespace or the
printme() one?
#!/usr/bin/python
class cgraph:
def printme(self):
print "hello\n"
x = cgraph()
x.printme()
Does the function print() exist in the cgraph namespace or the
printme() one?