8
votes
How to convert a date in python?
The other two answers are fine, but if you actually want the date for something else, you can use the datetime module:
from datetime import datetime
d = datetime.strpti …
3
votes
string.split(text) or text.split() what’s the diference?
An extra note: str is the string type, as S.Lott points out above. That means that these two forms:
'a b c'.split()
str.split('a b c')
# both return ['a', 'b', 'c']
…
1
vote
Ironpython Studio forms question
I'm not totally clear on the problem. You can certainly define a subclass of System.Windows.Forms.Form in IronPython in one module, and then import the form subclass in some other modu …
