In the Python in the 2.x series Python 2.7 is the latest, and last, major release.
38
votes
3answers
36k views
How to uninstall Python 2.7 on a Mac OS X 10.6.4?
I want to completely remove Python 2.7 from my Mac OS X 10.6.4. I managed to remove the entry from the PATH variable by reverting my .bash_profile. But I also want to remove all directories, files, ...
5
votes
3answers
4k views
How to create a TRIE in Python
I am new to Python and trying to learn and advance. I am interested in TRIEs and DAWGs and I have been reading a lot about it but I don't understand what should the output TRIE or DAWG file look like.
...
18
votes
4answers
8k views
Why is parenthesis in print voluntary in Python 2.7?
In Python 2.7 both the following will do the same
print("Hello, world!") # Prints "Hello, world!"
print "Hello, world!" # Prints "Hello, world!"
However the following will not
print("Hello,", ...
1
vote
2answers
1k views
board-drawing code to move an oval
I am working on a python checkers game for college. I have the board drawn, using tk, but I can't seem to implement a movement function for the pieces. If anyone see any errors in my code, or can ...
85
votes
1answer
3k views
Why is early return slower than else?
This is a follow-up question to an answer I gave a few days back. Edit: it seems that the OP of that question already used the code I posted to him to ask the same question, but I was unaware of it. ...
7
votes
3answers
2k views
pydev breakpoints not working
I am working on a project using python 2.7.2, sqlalchemy 0.7, unittest, eclipse 3.7.2 and pydev 2.4. I am setting breakpoints in python files (unit test files), but they are completely ignored ...
6
votes
4answers
6k views
python : scipy install on ubuntu
I'm currently following this tutorial to install scipy on Ubuntu 12.04 (I can't use apt-get install because I need a recent version) : http://www.scipy.org/Installing_SciPy/Linux
However I get errors ...
6
votes
2answers
121 views
file.tell() inconsistency
Does anybody happen to know why when you iterate over a file this way:
Input:
f = open('test.txt', 'r')
for line in f:
print "f.tell(): ",f.tell()
Output:
f.tell(): 8192
f.tell(): 8192
...
-4
votes
2answers
161 views
python takes list and returns only if negative value also exists using set
Basically I have a big list:
# where (n) is over a couple hundred thousand or is 1 million
def big_list(n):
return [ randrange(-n//3,n//3) for i in range(n) ]
And using a set I must return a ...
8
votes
2answers
1k views
Adding a database to the Django Project using Sqlite3 with Python 2.7
I am trying to add a database to the Django Project using Sqlite3 and Python 2.7.
This is how my setting.py looks like:
DATABASES = {
'default': {
'ENGINE': ...
7
votes
6answers
641 views
Is it possible to modify variable in python that is in outer, but not global, scope?
Given following python 2.7 code:
def A() :
def B() :
b = 1
def C() :
# I can access 'b' from here.
print( b )
# But can i modify 'b' here? 'global' and assignment will not ...
7
votes
4answers
7k views
ImportError: No module named _ssl
Ubuntu Maverick w/Python 2.7:
I can't figure out what to do to resolve the following import error:
>>> import ssl
Traceback (most recent call last):
File "<stdin>", line 1, in ...
6
votes
2answers
3k views
How to send a “multipart/form-data” with requests in python?
How to send a "multipart/form-data" with requests in python? How to send a file, I understand, but how to send the form data by this method can not understand.
5
votes
2answers
1k views
PyQt4 names showing as undefined in eclipse, but it runs fine
I am using Eclipse 3.7.1 with the latest PyDev add-in for Python coding. I am using PyQt4. At the top of my file I have:
from PyQt4.QtCore import *
from PyQt4.QtGui import *
In addition, I have the ...
3
votes
1answer
1k views
App Engine local datastore content does not persist
I'm running some basic test code, with web.py and GAE (Windows 7, Python27). The form enables messages to be posted to the datastore. When I stop the app and run it again, any data posted previously ...
2
votes
1answer
78 views
Need help finding a way using a set that returns a list that occur only once in a while still preserving order?
i used this code, but this codes only removes the duplicates on the list and returns the list without duplicates for example if i had a = [1,1,2,3,3,4,6]
when i used the bottom codes it giving ...
1
vote
3answers
170 views
Implementing __getitem__ in new-style classes
I have this code:
class A:
def __init__(self):
def method(self, item):
print self, ": Getting item", item
self.__getitem__ = types.MethodType(method, self, ...
0
votes
1answer
64 views
Does anyone know how to make a loop to end my maths game? [closed]
I have created a maths question game in a GUI in python and connected it to a database, but does anyone know how I can make it so after 5 questions my game ends and stores the score in my database ?.
...
0
votes
0answers
220 views
Does a two layer CRUD python appengine demo exist?
I have developed a handful of appengine apps which I finally have realized are examples of CRUD on top of CRUD. That is, I, the adminstrator, offer my app to users so they can either use the app (say ...
64
votes
1answer
2k views
Python: why are * and ** faster than / and sqrt()?
While optimising my code I realised the following:
>>> from timeit import Timer as T
>>> T(lambda : 1234567890 / 4.0).repeat()
[0.22256922721862793, 0.20560789108276367, ...
18
votes
4answers
2k views
What is the cross-platform method of enumerating serial ports in Python (including virtual ports)?
Note: I'm using Python 2.7, and pySerial for serial communications.
I found this article which lists two ways: http://www.zaber.com/wiki/Software/Python#Displaying_a_list_of_available_serial_ports
...
15
votes
4answers
12k views
gcc-4.2 failed with exit status 1
I've been looking for an answer to this issue but I couldn't find it, so here it is.
I'm trying to install Uniconvertor with a setup.py file into a MacOS X Lion (Python 2.7.2) using:
python setup.py ...
12
votes
6answers
4k views
Any way to properly pretty-print ordered dictionaries in Python?
I like the pprint module in Python. I use it a lot for testing and debugging. I frequently use the width option to make sure the output fits nicely within my terminal window.
It has worked fine until ...
10
votes
1answer
247 views
Impossible lookbehind with a backreference
From my understanding,
(.)(?<!\1)
should never match. Actually, php's preg_replace even refuses to compile this and so does ruby's gsub. The python re module seems to have a different opinion ...
5
votes
2answers
234 views
python - memory not being given back to kernel
I have a very simple script that allocates memory, dels the only reference to a sizable object, all the while printing heapy and pidstat reports. After running the script, heapy tells me that there ...
3
votes
2answers
217 views
ordering shuffled points that can be joined to form a polygon (in python)
I have a collection of points that join to form a polygon in 2D cartesian space. It is in the form of a python list of tuples
[(x1, y1), (x2, y2), ... , (xn, yn)]
the problem is the join them and ...
2
votes
3answers
548 views
Print number in engineering format
I am trying to print a number into engineering format with python, but I cannot seem to get it to work. The syntax SEEMS simple enough, but it just doesn't work.
>>> import decimal
...
1
vote
0answers
215 views
Appstats are only working for one WSGIApplication
I've split handlers between 2 python files (main.py and main_cms.py). app.yaml defines the URLs that each python file will handle.
When I look at the Appstats, only the handlers from one of the 2 ...
18
votes
7answers
445 views
Constructing the largest number possible by rearranging a list
Say I have an array of positive whole integers; I'd like to manipulate the order so that the concatenation of the resultant array is the largest number possible. For example [97, 9, 13] results in ...
8
votes
1answer
2k views
pydev debugger: unable to find real location for python 2.7 after OS 10.8 upgrade
I just upgraded to OS X 10.8 Mountain Lion and having troubles understanding how the pydev debugger should work on Aptana 3.0.
In Aptana's preferences I have the python interpreter setup with a ...
7
votes
3answers
3k views
How do you get all classes defined in a module but not imported?
I've already seen the following question but it doesn't quite get me where I want: Python: Get list of all classes within current module
In particular, I do not want classes that are imported, e.g. ...
6
votes
2answers
509 views
Make Python stop emitting a carriage return when writing newlines to sys.stdout
I'm on Windows and Python is (very effectively) preventing me from sending a stand-alone '\n' character to STDOUT. For example, the following will output foo\r\nvar:
sys.stdout.write("foo\nvar")
...
5
votes
3answers
2k views
Convert a directory structure in the filesystem to JSON with Node.js
I have a file structure like this:
root
|_ fruits
|___ apple
|______images
|________ apple001.jpg
|________ apple002.jpg
|_ animals
|___ cat
|______images
|________ cat001.jpg
|________ cat002.jpg
...
4
votes
1answer
1k views
Compiling python code into a single exe
I've been trying to compile python code into a single exe, and i didn't manage to do it correctly.
I've tried pyinstaller, and this is the .spec file:
# -*- mode: python -*-
a = ...
3
votes
3answers
3k views
Can't get cx_Oracle to work with Python version 2.7 / mac os 10.7.2 (Lion) - missing_OCIAttrGet
Can't get cx_Oracle to work with Python version 2.7 / mac os 10.7.2 (Lion)
One other thing: I have installed oracle 32 bit, not sure if that was correct.
Traceback (most recent call last):
...
2
votes
1answer
232 views
Why is my defaultencoding ‘utf-8’ with python 2.7.2?
In Python, the defaultencoding is stored in 'unicode_default_encoding', and I find out all Python source code, there are 2 functions with it.
_PyUnicode_Init() //strcpy(unicode_default_encoding, ...
2
votes
2answers
3k views
Python threading.timer - repeat function every 'n' seconds
I'm having difficulties with the python timer and would greatly appreciate some advice or help :D
I'm not too knowledgeable of how threads work, but I just want to fire off a function every 0.5 ...
1
vote
2answers
118 views
Weird behavior when writing and reading file
When executing the following code, after the second read, file gets filled with zero until being 4096 bytes large. I can't figure out why :
f = open("file.txt", "w+")
f.read()
# gives ''
...
5
votes
2answers
211 views
Python: updating a large dictionary using another large dictionary
I am trying to update some values of a large dictionary using values from another dictionary where they have similar keys (the same date but in a different format). The process I'm currently using is ...
5
votes
1answer
273 views
Numpy: equivalent of numpy.roll but only for data visualisation
Is there a way to perform a roll on an array, but instead of having a copy of the data having just a different visualisation of it?
An example might clarify: given b a rolled version of a...
...
3
votes
1answer
117 views
server parameter not specified in *.py
I get the message:
'server' parameter not specified in *.py
after doing:
appcfg.py update *.py
in the terminal.
When I look in my dashboard at the app the column current version says 'none ...
3
votes
2answers
171 views
How can I log in to an arbitrary user in appengine for use with the Drive SDK?
I have an application that needs to log into a singular Drive account and perform operations on the files automatically using a cron job. Initially, I tried to use the domain administrator login to do ...
3
votes
1answer
436 views
How to deploy a Scrapy spider on Heroku cloud
I developed few spiders in scrapy & I want to test those on Heroku cloud. Does anybody have any idea about how to deploy a Scrapy spider on Heroku cloud?
3
votes
2answers
606 views
Multiple conditions with if/elif statements
I'm trying to get an if statement to trigger from more than one condition without rewriting the statement multiple times with different triggers. e.g.:
if user_input == "look":
print ...
3
votes
2answers
207 views
Give the Python Terminal a Persistent History
Is there a way to tell the interactive Python shell to preserve its history of executed commands between sessions?
While a session is running, after commands have been executed, I can arrow up and ...
3
votes
1answer
2k views
Simple animation of 2D coordinates using matplotlib and pyplot
I am new to matplotlib. I have a list of x-y coordinates that I update in python and want to animate using matplotlib's pyplot. I want to specify the x-range and y-range in advance. Below is my ...
2
votes
2answers
204 views
How to write to a specific line in file in python?
I have a file as the format
xxxxx
yyyyy
zzzzz
ttttt
And i need to write in file between xxxxx and yyyyy lines as;
xxxxx
my_line
yyyyyy
zzzzz
ttttt
How can I achieve this?
2
votes
5answers
492 views
Python dynamic function creation with custom names
Apologies if this question has already been raised and answered.
What I need to do is very simple in concept, but unfortunately I have not been able to find an answer for it online.
I need to create ...
2
votes
4answers
108 views
What's the best way to convert an array of ints into a string?
I would like to convert an array of int (like this [1, 1, 2, 1]) into a string ("1121").
What's the best (most pythonic) way to do this?
I could always do something like this then remove the extra ...
2
votes
3answers
241 views
Python and Line Breaks
With Python I know that the "\n" breaks to the next line in a string, but what I am trying to do is replace every "," in a string with a '\n'. Is that possible? I am kind of new to Python.

