3
votes
2answers
213 views
indentation of multiline string
I have a script that uses the cmd Python module. The cmd module uses a triple quoted multiline string as it's help text. Something like this
def x(self, strags = None):
"""class …
1
vote
If I’m going to learn Python, should I learn 2.x or just jump into 3.0?
while there are enough differences, python 3 is not a new language. And python 2.x will be here for a long time still. Imho you're safe to start learning python 2. Keep in mind btw, that 'Python in …
3
votes
Importing in Python
Append the location to the module to sys.path.
Edit: (to counter the post below ;-) )
os.path does something completely different. You need to use sys.path …
