5
votes
Python tutorial for total beginners?
Learning to Program by Alan Gauld, covers the basics. It uses Python mostly, but references other languages.
…
0
votes
Tips for learning MUMPS (M) / Cache?
The MUMPS entry in Wikipedia has a few links, and is itself a concise introduction to the language. The …
1
vote
How can I improve this number2words script
Maybe Numbers and plural words as spoken English will help a little. A little dated though - 4 May 2005.
…
2
votes
What is a good reference guide for Django
For learning Python, see what did you use to teach yourself python.
…
2
votes
How to convert a date in python?
In your case, just use split:
>>> d1="2007-07-18 10:03:19"
>>> d1.split()[0]
'2007-07-18'
>>>
(The 1st part after splitting with whitesp …
2
votes
Java Mobile programming for a beginner, where to start?
Install NetBeans with J2ME - you can test your mobile applications on a variety of target device emulators. Easy deve …
0
votes
16
votes
Python syntax error
The backslash character is interpreted as an escape. Use double backslashes for windows paths:
>>> xp1 = "\\Documents and Settings\\"
>>> xp1
'\\Documents and Sett …
5
votes
What are some resources for learning Lambda Calculus?
If you are done with the Wikipedia entry, follow it's links to the online Structure and Interpretation of Computer Programs, do the assign …
1
vote
Compile error using cl.exe (Visual Studio 2008) for this cpp code
Alternately, change your includes to:
#include <stdio.h>
#include <string.h>
and the fprintf() calls to
fprintf(stdout,"ab …
1
vote
How can I know python’s path under windows?
On my windows installation, I get these results:
>>> import sys
>>> sys.executable
'C:\\Python26\\python.exe'
>>> sys.platform
'win32'
>>>
…
1
vote
Is there a way to substring a string in Python?
One example seems to be missing here: full (shallow) copy.
>>> x = "Hello World!"
>>> x
'Hello World!'
>>> x[:]
'Hello World!'
>>> x==x[:]
True
& …
0
votes
What is COM?
Maybe history can shed some light on the underlying ideas. See some history of Microsoft's scripting langu …
0
votes
Other than basic python syntax, what other key areas should I learn to get a website live?
Don't forget to give IronPython a try - your .NET experience can help making sense of newly learned Python …
0
votes
Designing a website for a serious beginner
A bit of an overkill, but try Aptana
Aptana Studio is a complete web development environment that combines powerful authoring …
