Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.

learn more… | top users | synonyms (4)

0
votes
1answer
159 views

How to write a console application using Py3k?

I found that many books and tutorial now is teaching how to write GUI application, but I would like to write an old school console application. But I don't know how to start. For example, I don't know ...
2
votes
2answers
408 views

Python's nonlocal depends on level of hierarchy?

This question is a follow-up on a question about Python variable scope. Additional questions q1, q2 and answers can be found on SO, among even more. The official Python documentation, and PEP 3104 are ...
5
votes
2answers
108 views

Packages “within” modules

I have a growing number of scripts that make up a program I am writing and decided it was time to clean up my source tree and package them up correctly. I'm sure this is a simple question but I can't ...
1
vote
1answer
383 views

Python Challenge - Level 5 , almost there

i am in level 5 now, i think that exmaple of whare i am stuck is the best here, the pickle content is: [(' ', 95)] [(' ', 14), ('#', 5), (' ', 70), ('#', 5), (' ', 1)] [(' ', 15), ('#', 4), (' ', ...
0
votes
1answer
95 views

using python to compare lists

I have three lists in python. The first two contain strings and the third one contains ids that match the first one. I would like to compare the strings from the second list with all the terms from ...
0
votes
3answers
1k views

Multithreading attempt using Python 3.2.2: “AttributeError: 'str' object has no attribute '_initialized'”

I'm running into a problem with the following Python 3.2.2 code. The code is an attempt to do some timing tests of another application I'm testing. The idea is to have another script (of any variety) ...
0
votes
1answer
604 views

What is wrong with urllib.request.Request(url=,data)

I test the code from http://docs.python.org/py3k/library/urllib.request.html on my computer(Ubuntu 10.04 and python 3.2) >>> import urllib.request >>> req = ...
1
vote
2answers
1k views

Python 3.2.2 READ from console

I am working on Python 3.2.2. The user has the option of entering the value on the console or let the default value be used if he just hits ENTER. e.g. If the user hits ENTER, the value is set to ...
1
vote
2answers
328 views

Install Python modules on new Python version

I've used easy_install to get one or two modules, then I used pip to install the Twitter module. However the newer version of Python I downloaded can't see these modules, only the built in OSX ...
1
vote
1answer
95 views

Dictionary with a running total

This is for a homework I am doing. I have a .txt file that looks like this. 11 eggs 1.17 milk 3.54 bread 1.50 coffee 3.57 sugar 1.07 flour 1.37 apple .33 cheese 4.43 orange .37 bananas .53 potato ...
5
votes
5answers
3k views

Relative import problems in Python 3

Python imports drive me crazy (my experience with python imports sometime doesn't correspond at all to idiom 'Explicit is better than implicit' :( ): [app] start.py from package1 import ...
-3
votes
3answers
70 views

How do i calculate amount of identic elements in a list?

I Have a (very long) list, with this structure: li1 = [[1.4, b][1.5, a][1.6, c][1,4, b][1.7,c][1.4, a][1.6,c]] I want to write a loop that calculate amount of elements li1[i][0]` with identical ...
1
vote
1answer
486 views

Python3.2 PyQt4 installation: UnboundLocalError

Recently I upgraded my Ubuntu to version 11.10 so I had to reinstall python3 modules. I downloaded latest PyQt4 but when I run configure.py I get following error: Qt Designer plugin disabled ...
2
votes
3answers
893 views

What does “**” mean in python? [duplicate]

Possible Duplicate: What does ** and * do for python parameters? What does *args and **kwargs mean? Simple program: storyFormat = """ Once upon a ...
3
votes
2answers
108 views

Python list.append as an argument

Why does the following code give 'None'? How can I resolve this? def f1(list1): f2(list1.append(2)) def f2(list1): print(list1) f1([1]) What also doesn't work: def f1(list1): arg1 = ...
3
votes
1answer
404 views

Subprocess completes but still doesn't terminate, causing deadlock

Ok, since there are currently no answer's I don't feel too bad doing this. While I'm still interested in what is actually happening behind the scenes to cause this problem, my most urgent questions ...
0
votes
1answer
437 views

Python 3.2: how to split multiline strings into sections using groups of lines

I have a file of groups of data across multiple lines. Each section of lines of data are preceded by two lines that start with hash marks (#) and followed by a newline ('\n'), a row of dashes ('-'), ...
7
votes
1answer
134 views

Appending a process to a list (but doing nothing with it) alters program behaviour

In the following program, when I append the process to a list (a seemingly pointless thing to do), it runs as expected. But if I remove the append, the processes destructor is called many times before ...
1
vote
1answer
650 views

How to prevent Python from escaping special characters when reading a regex from a text file?

I am reading a text file in Python that, among other things, contains pre-written regexes that will be used for matching later on. The text file is of the following format: ... --> Task 2 ...
1
vote
2answers
135 views

Error printing collection.Counter instances

Counter objects are subclasses of dict so they have the method setdefault. >>> from collections import Counter >>> c = Counter(houses=5) >>> print(c.setdefault.__doc__) ...
2
votes
2answers
364 views

Import parent module package

The directory structure: [app] start.py import package1 [package1] __init__.py print('Init package1') import module1 import subpackage1 ...
0
votes
1answer
129 views

Is there something special in range(start, stop, step).count(item)

I just discovered the py3k range method count(): counts = range(start, stop, step).count(item) Is not the result of the method always 1 or 0 ?. It seems to me a bit overkilling to call the method ...
2
votes
2answers
626 views

Tkinter in Python - Is it supposed to be slow or is the bottleneck somewhere else in the program?

In school, we have to create a game using Python and Tkinter as a group project and since the program is getting rather large, I want to know if my problem is caused by Tkinter itself before trying to ...
1
vote
3answers
1k views

Sphinx and Python 3.x : how force Sphinx to use Python 3.x interpreter?

I try to create documentation for a project written with Python 3.x. Sphinx is the tool I want to use and, according to the official site, its last version 1.1.2 is compatible with Python 3.1+. My OS ...
0
votes
1answer
92 views

Replace multiple texts with their corresponding texts in XML using Python - Part 2 -

I would like to replace a text of aliasname element with a text from name if there is no corresponding key in the dictionary. here is the xml that I am working on now. - <esri:Workspace ...
3
votes
2answers
69 views

Is this possible to dynamically to generate an attribute in a python object?

For example, the object only have two attributes, person object, in this example, only have first name, and second name. Is this possible to make a gender attribute on the fly? Thanks.
2
votes
4answers
1k views

reading character from keyboard in a while loop

The following block of code: ans = 'x' while ans not in ['Y','y','N','n']: ans = input("Do Something? [y|n]:") print(ans in ['Y','y','N','n']) produces the following output: Do Something? ...
1
vote
1answer
2k views

Choosing a file in Python3

Where is the tkFileDialog module in Python 3? The question choosing a file in python - simple GUI references the module using: from Tkinter import Tk from tkFileDialog import askopenfilename but ...
1
vote
3answers
96 views

py3k: mapping dictionary (string->number) into list (of strings)

Assume we have dictionary that translates strings into numbers. How to reverse it into list ? Let assume, we can fill not mapped numbers with empty string ''. Here example how it works: ...
19
votes
3answers
427 views

Subclassing builtin types in Python 2 and Python 3

When subclassing builtin types, I noticed a rather important difference between Python 2 and Python 3 in the return type of the methods of the built-in types. The following code illustrates this for ...
2
votes
1answer
75 views

py3k: Maximum Number In Given List - short form

We are given list of numbers l , example: l=[5,2,4,3] What is short form of extracting maximum number - in other words - short form of this: x=l[0] for i in l: if x<i : x=i ?
4
votes
3answers
1k views

Fastest stdin/out IO in python 3?

I've been solving a few problems on SPOJ.pl using python 3.1.2 and some peoples fast result on simple problems makes me wonder if there is a faster way to handle input and output. I've tried using ...
0
votes
1answer
99 views

Excluding non-relevant parameters when using PyArg_ParseTupleAndKeywords

In an embedded python scenario we are using PyArg_ParseTupleAndKeywords to receive data from Python (version >=3 .x) and use it in a C++ application. At the moment we have a similar setup: PyObject* ...
2
votes
1answer
86 views

Creating a variable that can be compared across processes

I have code like the following, class _Process(multiprocessing.Process): STOP = multiprocessing.Manager().Event() def __init__(self, queue, process_fn): self._q = queue ...
1
vote
2answers
197 views

What's the best practice to store password and username in a PyQt program?

I'm writing a small program with PyQt and python 3. The program needs to know the username and password for a user's email account to use for POP3 protocol. And I wonder what's the best and hopefully ...
1
vote
2answers
291 views

Python bottlenecks; Determining optimum chunk size for a file comparison function

I'm writing a file comparison function. I know of filecmp.cmp but in my dataset it is expected that a lot of the files will be the same so I thought rather than comparing each potential match with ...
3
votes
2answers
2k views

importing a module in Idle shell

I'm trying to learn python and I'm having trouble importing a module. I have a .pyc file that I'm trying to import into idle shell called dfa.pyc I have the file in a folder called xyz. I navigate to ...
2
votes
1answer
695 views

Python3 MySQL Drivers

Recently, I switched to Python 3 (3.1 on a FreeBSD system), and i would like to work with MySQL databases. First i tried to use pymysql3-0.4, but it failed when i used SUM in my query with this ...
1
vote
3answers
121 views

Finding consecutive values within a list

I have a list of values: a = [1,3,4,5,2] I now want the following function: does_segment_exist(a, [1,3,4]) #True does_segment_exist(a, [3,4,5]) #True does_segment_exist(a, [4,5,2]) #True ...
0
votes
1answer
250 views

Accessing a ctypes array of data

I wrote a wrapper class around libpcap for python3 but I'm struggling to find useful documentation on how to deal with ctype arrays in python. self.packetdata = ...
11
votes
4answers
2k views

Opening multiple (an unspecified number) of files at once and ensuring they are correctly closed

I am aware that I can open multiple files with something like, with open('a', 'rb') as a, open('b', 'rb') as b: But I have a situation where I have a list of files to open and am wondering what the ...
18
votes
2answers
2k views

What is the python3 equivalent of “python -m SimpleHTTPServer”

What is the python3 equivalent of python -m SimpleHTTPServer?
3
votes
2answers
4k views

How to configure PyQt4 for Python 3 in Ubuntu?

This question was originally asked in askubuntu.com but got no attention so I think maybe this is a better place to ask. I installed PyQt4 with synaptic. I'm using Python3 so I need to configure the ...
2
votes
2answers
501 views

Python 3.2.2 Function Returns None on Non-Empty Variable

I am writing a simple script to download .mp4 TEDTalks given a list of TEDTalk website links: # Run through a list of TEDTalk website links and download each # TEDTalk in high quality MP4 import ...
1
vote
1answer
227 views

Creating a class in Python 3 “Takes no parameters” error

I'm leaning python and tried this code to test my 1st bit of OOP coding but I'm not sure how to fix this pesky error. This example of from Learning Python by mark Lutz 4th edition - Page 650. Any ...
1
vote
1answer
443 views

Compiling vim from source - failes to configure with libncurses6

I have recently started moving to vim as my main development environment, and I wanted to write some plugins for it in Python. I soon discovered that on my opensuse, vim is distributed without python ...
0
votes
1answer
53 views

How do I make the parameters parsed by configparser visible to every .py

I like to parse parameters, vars by using configparser. However, I have to pass the instance to every .py, in order to get the parameters. What is the most elegant way to make the parameters visible ...
5
votes
2answers
787 views

Terminal in broken state (invisible text / no echo) after exit() during input() / raw_input()

I've been writing a small utility application using Python 3 (the below testcase also works in Python 2, however) and PyQt 4 that uses the code module to spawn a REPL prompt allowing interaction with ...
1
vote
2answers
1k views

Python: “Self” is not not defined?

Back with the same confusing script.. there was A LOT of spacing issues that I fixed... but seem to be missing more? Whats wrong with this -- its saying line 332 self is not defined... Here are a ...
0
votes
1answer
440 views

CherryPy, SQLAlchemy Core thread safety?

in my web based app, i decided to use Cherrypy 3.2 as http framework. I am using the cherrypy.Application class to create WSGI compatible appliaction object, which is served via Apache2 with ...

1 85 86 87 88 89 114