Search Results

0
votes

How can I translate the following filename to a regular expression in Python?

When working with regexes I find the Mochikit regex example to be a great help. /^b\d\d\dcv\d\d_test …
1
vote

Python: Problem with overloaded constructors

That isn't valid python. The constructor for a Python class is def __init__(self, ...): and you cannot overload it. What you can do is use defaults for the arguments, e …
8
votes

Subversion… practical with a PHP framework app or not?

Subversion allows you to store your source in a central location, make changes from multiple places (ie. laptop, desktop), track changes and revert changes to your source tree if needed. Ha …
9
votes

Create a List that contain each Line of a File

Its alot easier than that: List = open("filename.txt").readlines() This returns a list of each line in the file. …
0
votes

C language problem

Ok, the code as presented is a pile of crap. I will leave it as an exercise for you to sort out what I fixed for you: #include <stdio.h> int main(int argc, char *argv[]) { …