2
votes
4answers
440 views
How does Python handle classes being in separate files or are they all supposed to be in one file [closed]
I'm working on framework for testing some command line utilities. I want to create some classes to hold the different types of information more easily.
Python is fairly new to me so I'm n …
0
votes
How does Python handle classes being in separate files or are they all supposed to be in one file
An answer from the duplicate question in the comments seems to answer my question. M …
-4
votes
Using string as variable name
What you're looking for is exec
class helloworld():
def world(self):
print "Hello World!"
str …
