Tagged Questions

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

learn more… | top users | synonyms (4)

79
votes
17answers
27k views

Should I learn Python 2 before 3, or start directly from Python 3?

I would like to learn python and currently have access to some good python 2 books. However python 3 is not guaranteed to be backward compatible with python 2. If I were to learn python 2 I have to ...
40
votes
3answers
32k views

Convert byte array to Python string

I'm using this code to get standard output from an external program: >>> from subprocess import * >>> command_stdout = Popen(['ls', '-l'], stdout=PIPE).communicate()[0] The ...
34
votes
6answers
6k views

How are you planning on handling the migration to Python 3?

I'm sure this is a subject that's on most python developers' minds considering that Python 3 is coming out soon. Some questions to get us going in the right direction: Will you have a python 2 and ...
32
votes
25answers
5k views

When and why are you planning to upgrade to Python 3.x?

Python 3.x (aka Python 3000, Py3k, etc) is now available. When and why are you planning on porting your project or code to the new Python? edit: I'm particularly interested in any features that don't ...
29
votes
2answers
354 views

Why are slices in Python 3 still copies and not views?

As I only now noticed after commenting on this answer, slices in Python 3 return shallow copies of whatever they're slicing rather than views. Why is this still the case? Even leaving aside numpy's ...
29
votes
8answers
3k views

__getattr__ on a module

How can implement the equivalent of a __getattr__ on a class, on a module? Example When calling a function that does not exist in a module's statically defined attributes, I wish to create an ...
26
votes
4answers
6k views

What Web Development frameworks support Python 3?

I was looking into playing around with Python 3.0. My plan was to build a cutesy web-app in Django, but I don't think that Django support Python 3 at this stage (the last release was before Python 3 ...
24
votes
3answers
14k views

Python 3 online interpreter / shell

Does anyone know about an online interpreter like http://codepad.org/ or http://try-python.mired.org/ with Python 3?
23
votes
2answers
412 views

Make the Move to Python 3 - Best practices

We think about whether we should convert a quite large python web application to Python 3 in the near future. All experiences, possible challenges or guidelines are highly appreciated.
22
votes
2answers
2k views

Web gateway interfaces in Python 3

I've finally concluded that I can no longer afford to just hope the ongoing Py3k/WSGI disasterissues will be resolved anytime soon, so I need to get ready to move on. Unfortunately, my available ...
21
votes
8answers
2k views

How to make an immutable object in Python?

Although I have never needed this, it just struck me that making an immutable object in Python could be slightly tricky. You can't just override __setattr__, because then you can't even set attributes ...
21
votes
8answers
6k views

Can I install python 3.x and 2.x on the same computer?

I'm running windows and the shell/os automatically runs python based on the registry settings when you run a program on the command line. Will this break if I install a 2.x and 3.x version of python ...
19
votes
4answers
789 views

negative zero in python

[Python 3.1] I encountered negative zero in output from python; it's created for example as follows: k = 0.0 print(-k) The output will be -0.0. However, when I compare the -k to 0.0 for equality, ...
18
votes
3answers
181 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 ...
18
votes
10answers
534 views

What third-party libraries are the biggest show stoppers for Python 3.x?

One of the main obstacles preventing people from moving to Python 3 are third-party libraries which have not yet been ported. What library is the biggest show stopper for you? One library per ...
18
votes
2answers
5k views

Image library for Python 3

What is python-3 using instead of PIL for manipulating Images?
18
votes
1answer
418 views

strange python behaviour with mixing globals/parameters and function named 'top'

The following code (not directly in an interpreter, but execute as file) def top(deck): pass def b(): global deck produces the error SyntaxError: name 'deck' is local and global on ...
18
votes
4answers
1k views

What are good uses for Python3's “Function Annotations”

Function Annotations: PEP-3107 I ran across a snippet of code demonstrating Python3's function annotations. The concept is simple but I can't think of why these were implemented in Python3 or any ...
18
votes
3answers
647 views

Python — what is NOT in 2.7 that IS in 3.1? So many things have been back-ported, what is NOT?

I've been following the saga of Python 3.x and have watched the 3.x features gradually getting back-ported to the 2.x line. Most of the libraries I use haven't been ported and some (e.g. Twisted) ...
18
votes
6answers
6k views

Python 3 performance?

No doubt most people have read all about the various incompatible changes that are going into Python 3, so on a question of just performance, how does python 3 compare to python 2.x?
17
votes
4answers
287 views

Is del called on an object that doesn't complete init?

Will __del__ be called if an object's __init__ does not complete (such as by throwing an exception)?
17
votes
12answers
1k views

What features of Python 3.0 will change your everyday coding?

Py3k just came out and has gobs of neat new stuff! I'm curious, what are SO pythonistas most excited about? What features are going to affect the way you write code on a daily basis, or have you ...
16
votes
5answers
2k views

Why print statement is not pythonic?

This question was bugging me for quite a while (as evidenced by my previous question): why exactly is print(x) better (which is defined as being more pythonic) than print x? For those who don't know, ...
15
votes
4answers
1k views

Why is equivalent Python code so much slower

can somebody explain why is the following trivial code (implementation of Euclid's algorithm to find greatest common denominator) about 3 times slower then equivalent code in Ruby ? contents of ...
15
votes
14answers
3k views

Python 3 IDE for teaching

With Python 3 maturing and slowly gaining adoption, we're taking the plunge and adopting it in our introductory programming classes for kids aged 12-18. Is there a free (preferably open source) IDE ...
15
votes
2answers
332 views

Is everything greater than None?

Is there a Python built-in datatype, besides None, for which: >>> not foo > None True where foo is a value of that type? How about Python 3?
14
votes
2answers
2k views

Size of list in memory

I just experimented with the size of python datastructures in memory. I wrote the following snippet: import sys lst1=[] lst1.append(1) lst2=[1] print(sys.getsizeof(lst1), sys.getsizeof(lst2)) I ...
14
votes
3answers
5k views

Python 3 and static typing

I didn't really pay as much attention to Python 3's development as I would have liked, and only just noticed some interesting new syntax changes. Specifically from this SO answer function parameter ...
14
votes
3answers
13k views

wxPython for Python 3

Does wxPython have a version for Python 3? If it does, where can I get it?
14
votes
4answers
2k views

Both Python 2 and 3 in Emacs

I have been using Emacs to write Python 2 code. Now I have both Python 2.6 and 3.0 installed on my system, and I need to write Python 3 code as well. Here is how the different versions are set up in ...
13
votes
1answer
86 views

Is it possible to prefill a input() in Python 3's Command Line Interface?

I'm using Python 3.2 on Ubuntu 11.10 (Linux). A piece of my new code looks like this: text = input("TEXT=") Is it possible to get some predefined string after the prompt, so I can adjust it if ...
13
votes
5answers
211 views

How to write Python 2.x as much compatible with Python 3.x as possible?

There are many ways to include Python 3.x features in Python 2.x, so code of Python 2.x scripts could be easily converted into Python 3.x in the future. One of these examples is replacing print ...
13
votes
5answers
356 views

Writing Python 2.7 code that is as close to Python 3.x syntax as possible

Since Django doesn't yet support Python 3.x, I'm using Python 2.7. However, I'd like to go ahead and start familiarizing myself with the new Python 3.x syntax as much as possible. Which leads me to ...
13
votes
11answers
2k views

Who's Using Python 3.0?

The "what's new" list looks pretty extensive. I've heard that this is considered a radical shift in the language. Any early adopters out there? Would you advise someone dipping their toes into the ...
13
votes
3answers
528 views

What is the problem with reduce()?

There seems to be a lot of heated discussion on the net about the changes to the reduce() function in python 3.0 and how it should be removed. I am having a little difficulty understanding why this is ...
12
votes
3answers
282 views

Generating a linear, timeline-based, representation from items that consume time and items which do not, but still need space to be drawn on

This is a question about generating an image, or any other representations, for a set of parallel data. Is is not about drawing or GUI programming but calculating positions. First I'll explain a bit ...
12
votes
2answers
2k views

Python 3 with Emacs

Is there anything that should be done to make GNU Emacs 23.2 work well with Python 3? How would an ideal environment for development with Python 3 in Emacs look like? Is there any documentation ...
12
votes
5answers
1k views

Will python 3 ever catch on?

I have been learning a bit of Python 2 and Python 3 and it seems like Python 2 is over all better than Python 3. So that's where my question comes in. Are there any good reasons to actually switch ...
12
votes
4answers
4k views

Numpy with python 3.0

NumPy installer can't find python path in the registry. Cannot install Python version 2.6 required, which was not found in the registry. Is there a numpy build which can be used with python ...
12
votes
1answer
2k views

Building executables for Python 3 and PyQt

I built a rather simple application in Python 3.1 using PyQt4. Being done, I want the application to be distributed to computers without either of those installed. I almost exclusively care about ...
12
votes
3answers
909 views

Hello World in Python

I am trying to learn Python, however I tried to run a script that is LITERALLY just: print "Hello, World!" And I get this error: File "hello.py", line 1 print "Hello, World!" ...
12
votes
2answers
996 views

Is generator.next() visible in python 3.0?

I have a generator that generates a series, for example: def triangleNums(): '''generate series of triangle numbers''' tn = 0 counter = 1 while(True): tn = tn + counter ...
12
votes
12answers
3k views

Why won't you switch to Python 3.x?

I ask this for deployable reasons. As in, if I write a solution in python, I feel bound to write to 2.x due to the lack of adoption of python 3. This is a major daily concern of mine, and I want to ...
12
votes
6answers
8k views

What is an alternative to execfile in Python 3.0?

It seems they canceled in Python 3.0 all the easy way to quickly load a script file - both execfile() and reload(). Is there an obvious alternative I'm missing?
12
votes
2answers
959 views

Why doesn't Python 2.6 have set literals and comprehensions or dict comprehensions?

Python 2.6 was basically a stepping stone to make converting to Python 3 easier. A lot of the features destined for Python 3 were implemented in 2.6 if they didn't break backward compatibility with ...
12
votes
12answers
1k views

Python 3.0 and language evolution

Python 3.0 breaks backwards compatibility with previous versions and splits the language into two paths (at least temporarily). Do you know of any other language that went through such a major design ...
12
votes
6answers
2k views

When will most libraries be Python 3 compliant?

Does anyone have an idea how long it will take before "almost all" widely used Python libraries work with Python 3.0? I am planning to stay on 2.X for a while because I don't want to start porting ...
11
votes
7answers
158 views

custom dict that allows delete during iteration

UPDATED based on Lennart Regebro's answer Suppose you iterate through a dictionary, and sometimes need to delete an element. The following is very efficient: remove = [] for k, v in dict_.items(): ...
11
votes
6answers
166 views

Importing a python module without actually executing it

In the context of a complex application, I need to import user-supplied 'scripts'. Ideally, a script would have def init(): blah def execute(): more blah def cleanup(): yadda so I'd ...
11
votes
1answer
156 views

Is there any working memory profiler for Python3

In Python 2 there's a couple of tools but everything seems to be old and out-of-dated. I've found PySizer and Heapy but everything seems to be Python2 oriented and would take a lot of effort to ...

1 2 3 4 5 35