- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
3 Posted Topics
This code assumes that: a) you don't have data that contains a lot of commas and semicolons. In other words, when you look at these delimited files commas or semicolons are generally only seen because they are the delimiters and not in text strings. b) that 256 in the .read() …
I’ve got a piece of third party software containing classes that I want to modify by subclassing. My problem is that one of the third party classes is not accessed directly but returned by the third party class through a method call. So: [code]factory = ThirdParty.Factory() node = factory.getNode() #node …
Per [url]http://docs.python.org/tutorial/classes.html#inheritance[/url] [code=python]class DerivedClassName(BaseClassName): <statement-1> . . . <statement-N>[/code]
The End.
Z8934