Search Results

1
vote

Is there a better layout language than HTML for printing?

What's wrong with just using Qt's native printing? …
0
votes

Statistics with numpy

In addition to df's answer, if you want to know the specific prices that are above the base prices, you can do: prices[prices > (1.10 * base_prices)] …
0
votes

pysqlite user types in select statement

You probably have to cast it to the correct type. Try "SELECT * FROM tasks WHERE (display = CAST ('True' AS bool))". …
20
votes

Should I learn Python after C++?

There's no right or wrong answer, really. But I think you'll benefit more from learning Python. Given the similarities between C# and C++, you'll learn a different way of thinking from Python. T …
1
vote

What’s a good rate limiting algorithm?

Keep the time that the last five lines were sent. Hold the queued messages until the time the fifth-most-recent message (if it exists) is a least 8 seconds in the past (with last_five as an array …
7
votes

Which version of python added the else clause for for loops?

It's been around since at least 1.4, which is the oldest v …
4
votes

I need a Python Function that will output a random string of 4 different characters when given the desired probabilites of the characters.

Here's the code to select a single weighted value. You should be able to take it from here. It uses bisect an …
7
votes

Ruby String Translation

You seem to be looking for String#tr. Use like this: some_string.tr('a-zA-Z', 'c-zabC-ZAB') …
2
votes

Distributing Ruby/Python desktop apps

The state of affairs is pretty bad. The most reliable method at present is probably to use JRuby. I know that's probably not the answer you want to hear, but, as you say, ruby2exe is unreliable, …
0
votes

Python 4 whitespaces indention. Why?!

The PEP isn't the boss of you. If it's already consistently 2-space indented, there's no reason to change all your code to conform to it. You could follow it going forward if you really think it' …
15
votes

Simple noob python style question.

Check out PEP 8. It says to do the first one. …
6
votes

Python: How to make a completely unshared copy of a complicated list? (Deep copy is not enough)

Depending on you situation, you might want to work against a deep copy of this list. …