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)

128
votes
17answers
47k views

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

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 ...
108
votes
4answers
77k 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 ...
76
votes
2answers
2k views

str performance in python

While profiling a piece of python code (python 2.6 up to 3.2), I discovered that the str method to convert an object (in my case an integer) to a string is almost an order of magnitude slower than ...
76
votes
2answers
2k views

What does -> mean in Python function definitions?

I've recently noticed something interesting when looking at Python 3.3 grammar specification: funcdef: 'def' NAME parameters ['->' test] ':' suite The optional 'arrow' block was absent in Python ...
68
votes
3answers
59k views

Python 3 online interpreter / shell [closed]

Does anyone know about an online interpreter like http://codepad.org/ or http://try-python.mired.org/ with Python 3?
53
votes
1answer
1k views

Which classes cannot be subclassed?

Is there any rule about which built-in and standard library classes are not subclassable ("final")? As of Python 3.3, here are a few examples: bool function operator.itemgetter slice I found a ...
48
votes
8answers
9k 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 ...
48
votes
7answers
24k views

Image library for Python 3

What is python-3 using instead of PIL for manipulating Images?
43
votes
7answers
8k 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 ...
41
votes
5answers
28k views

Syntax error on print with Python 3

I'm new to python and am currently lost as to why print is giving a syntax here. Hoping someone might be able to point me in the right direction. Thanks Python 3.0.1 (r301:69561, Feb 13 2009, ...
41
votes
7answers
8k 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 ...
37
votes
2answers
1k 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 ...
35
votes
6answers
37k views

What is the correct syntax for 'else if'?

I'm a new Python programmer who is making the leap from 2.6.4 to 3.1.1. Everything has gone fine until I tried to use the 'else if' statement. The interpreter gives me a syntax error after the 'if' in ...
32
votes
9answers
14k 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 ...
31
votes
4answers
5k 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 ...
30
votes
4answers
54k views

How do I use raw_input in Python 3.1

import sys print (sys.platform) print (2 ** 100) raw_input( ) I am using Python 3.1 and can't get the raw_input to "freeze" the dos pop-up. The book I'm reading is for 2.5 and I'm using 3.1 What ...
29
votes
4answers
9k 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!" ...
28
votes
6answers
17k 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?
28
votes
5answers
3k views

Python: What's the difference between __builtin__ and __builtins__?

I was coding today and noticed something. If I open a new interpreter session (IDLE) and check what's defined with the dir function I get this: $ python >>> dir() ['__builtins__', '__doc__', ...
28
votes
2answers
392 views

Python 3: Catching warnings during multiprocessing

Too long; didn't read The warnings.catch_warnings() context manager is not thread safe. How do I use it in a parallel processing environment? Background The code below solves a maximization problem ...
25
votes
14answers
8k 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 ...
25
votes
3answers
10k views

Getting a map() to return a list in python 3.1

Im trying to map a list into hex, and then use the list elsewhere. In python 2.6, this was easy: A: python 2.6: >>> map(chr,[66,53,0,94]) ['B', '5', '\x00', '^'] However, on 3.1, the ...
25
votes
2answers
4k 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 ...
25
votes
2answers
616 views

Make the Move to Python 3 - Best practices [closed]

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.
24
votes
7answers
6k views

How to install python3 version of package via pip?

I have both python2.7 and python3.2 installed in Ubuntu 12.04. The symbolic link python links to python2.7. When I type: sudo pip install package-name It will default install python2 version of ...
24
votes
6answers
2k 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 ...
23
votes
9answers
898 views

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

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? Please mention one ...
23
votes
8answers
11k views

When will Django support Python 3.x?

I understand Django can only be run on Python 2.7 or below. When will it run on Python 3.1 or above? I see that Django 1.3 is coming out, does that support Python 3.x?
23
votes
4answers
11k 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 ...
23
votes
4answers
639 views

Python why would you use [:] over =

I am just learning python and I am going though the tutorials on https://developers.google.com/edu/python/strings Under the String Slices section s[:] is 'Hello' -- omitting both always gives ...
23
votes
3answers
18k views

Python 3, easy_install, pip and pypi

What is the current status of easy_install, pip and the repository (pypi.python.org) with regards to Python 3.x? Are there versions of easy_install and/or pip that can install the right versions of ...
23
votes
2answers
3k 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 ...
22
votes
4answers
22k views

wxPython for Python 3

Does wxPython have a version for Python 3? If it does, where can I get it?
21
votes
4answers
9k 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,", ...
21
votes
1answer
14k views

Best way to convert string to bytes in Python 3?

There appears to be two different ways to convert a string to bytes, as seen in the answers to TypeError: 'str' does not support the buffer interface Which of these methods would be better or ...
21
votes
5answers
425 views

'is' operator behaves differently when comparing strings with spaces

I've started learning Python (python 3.3) and I was trying out the is operator. I tried this: >>> b = 'is it the space?' >>> a = 'is it the space?' >>> a is b False ...
21
votes
3answers
963 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) ...
20
votes
5answers
3k 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, ...
20
votes
2answers
742 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?
20
votes
4answers
2k 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, ...
19
votes
3answers
12k views

What's the difference between raw_input() and input() in python3.x?

What is the difference between raw_input() and input() in python3.x ?
19
votes
4answers
2k 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 ...
19
votes
6answers
7k views

Python 3 performance?

On a question of just performance, how does Python 3 compare to Python 2.x?
19
votes
2answers
2k views

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

What is the python3 equivalent of python -m SimpleHTTPServer?
19
votes
1answer
739 views

Why is math.factorial much slower in Python 2.x than 3.x?

I get the following results on my machine: Python 3.2.2 (default, Sep 4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on win 32 Type "help", "copyright", "credits" or "license" for more information. ...
19
votes
1answer
4k views

Are lists thread-safe

I notice that it is often suggested to use queues with multiple treads, instead of lists and .pop(). Is this because lists are not thread-safe, or for some other reason?
19
votes
3answers
439 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
5answers
19k views

how to copy a dictionary in python 3.1 and edit ONLY the copy

can someone please explain this to me??? this doesn't make any sense to me.... I copy a dictionary into another and edit the second and both are changed???? ActivePython 3.1.0.1 (ActiveState ...
18
votes
12answers
2k views

What features of Python 3.0 will change your everyday coding? [closed]

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 ...
18
votes
3answers
2k 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 ...

1 2 3 4 5 122