1
vote
4answers
56 views
Add tuple to list of tuples in Python
I am new to python and don't know the best way to do this.
I have a list of tuples which represent points and another list which represents offsets. I need a set of all the combinations that this …
4
votes
13answers
320 views
How long should you focus on a programming language?
Okay, so I've been doing web design for about a year or two, and I've decided that I want to learn a Programming Language, because I've figured out that's what interest me more.
I start out learning …
0
votes
7answers
94 views
Delete final line in file via python
How can one delete the very last line of a file via python?
Example File:
hello
world
foo
bar
Resulatant File:
hello
world
foo
I've created the following code to find the number of lines in the …
0
votes
2answers
43 views
Python directory searching and organizing by dict.
Hey all, this is my first time recently trying to get into the file and os part of Python. I am trying to search a directory then find all sub directories. If the directory has no folders, add all the …
0
votes
6answers
79 views
Count Parenthesis in a file with a Python program?
I Wanna fix a function through it i can count how many times are used the:(,),[,]
if the counts of ( are equal to those of )
and if the counts of [ are equal to those of ]
then i have valid syntax!
…
1
vote
2answers
53 views
Euclidian distance between posts based on tags
I am playing with the euclidian distance example from programming collective intelligence book,
# Returns a distance-based similarity score for person1 and person2
def …
1
vote
2answers
57 views
Implementing python exceptions
I'm having some problems implementing an exception system in my program.
I found somewhere the following piece of code that I am trying to use for my program:
class …
0
votes
0answers
14 views
Django for web2py developers
Now that I've gotten relatively familiar with web2py, I'd like to give Django a go.
What are the main differences?
What would be the most efficient way to get started taking into account web2py …
3
votes
6answers
133 views
Optimal way to access a value from the last iteration in a loop
What's the best and fastest way to access a value from the previous iteration in a for loop, assuming that the object will be very large (example, a cursor object which has 100,000+ records)
Using a …
0
votes
2answers
49 views
Python: “unsupported operand types for +: ‘long’ and ‘numpy.float64’ “
My program uses genetic techniques to build equations.
It randomly assembles strings into an equation with one unknown.
"(((x + 1) * x) / (4 * 6) ** 2)"
One of the strings is: …
2
votes
4answers
38 views
Request for comments: python class factory for group of constant values
The following python module is meant to be a basis for "constant" handling in python. The use case is the following:
one groups some constants (basically "names") that belong together with their …
0
votes
0answers
11 views
What signal can be connected to an initial dialog display in pyqt4 (qt)
I have an application in which I would like to connect whatever signal is emitted when a pyqt4 dialog is displayed in order to do execute an initial method. I don't want the method to be called in the …
0
votes
1answer
18 views
Django URLs configuration debugging?
What's the best method to debug Django's url configurations? Sometime it just throw out a Unhandled Exception without any hints if there is an error in urls.py
Sometimes it throws out errors like …
2
votes
2answers
79 views
why is python reusing a class instance inside in function
I'm running a for loop inside a function which is creating instances of a class to test them. instead of making new classes it appears to be reusing the same two over and over.
Is there something I'm …
0
votes
2answers
52 views
Search Python list and return 2 or more of the same character
Hey,
I've just started to learn Python and I'm creating the game Hangman. I've got the basic functionality down. I have a list containing the words and they're randomly selected. I have an input for …
