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)

124
votes
17answers
46k 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 ...
40
votes
5answers
26k 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, ...
48
votes
7answers
22k views

Image library for Python 3

What is python-3 using instead of PIL for manipulating Images?
27
votes
6answers
16k 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?
1
vote
2answers
737 views

Python List Index

I have experienced some problem by using a nested list in Python in the code shown bleow. Basically, I have a 2D list contains all 0 values, I want to update the list value in a loop. However, ...
14
votes
3answers
18k views

Py2exe for Python 3.0

I am looking for a Python3.0 version of "py2exe". I tried running 2to3 on the source for py2exe but the code remained broken. Any ideas?
15
votes
3answers
11k 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 ?
29
votes
4answers
50k 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 ...
10
votes
5answers
7k views

`xrange(2**100)` -> OverflowError: long int too large to convert to int

xrange function doesn't work for large integers: >>> N = 10**100 >>> xrange(N) Traceback (most recent call last): ... OverflowError: long int too large to convert to int ...
31
votes
9answers
13k 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 ...
42
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 ...
8
votes
6answers
8k views

How do I unescape HTML entities in a string in Python 3.1?

I have looked all around and only found solutions for python 2.6 and earlier, NOTHING on how to do this in python 3.X. (I only have access to Win7 box.) I HAVE to be able to do this in 3.1 and ...
13
votes
7answers
13k views

MySQL-db lib for Python 3.0?

So, looking for a mysql-db-lib that is compatible with py3k/py3.0/py3000, any ideas? google turned up nothing.
5
votes
7answers
966 views

Python Version for a Newbie [closed]

I am extremely new to python, having started to learn it less than a month ago, but experienced with some other programming languages (primarily C# and SQL). But now that Python 3.0 has been released ...
8
votes
2answers
286 views

Python cannot handle numbers string starting with 0. Why?

I just executed the following program on my python interpreter: >>> def mylife(x): ... if x>0: ... print(x) ... else: ... print(-x) ... >>> ...
67
votes
3answers
58k 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?
14
votes
3answers
4k views

What's the best SOAP library for Python 3.x? [closed]

I searched the web for an existing and supported SOAP library for Python 3. (both client and server) Here the list of libraries I've found: Python 2: SOAPy: discontinued Python 2 project ZSI: ...
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,", ...
6
votes
3answers
1k views

PPM image to ASCII art in Python

I have to make a program that reads in a file from the command line and covert it to ASCII art. I am using PPM format and here is a link to the project. Here is what I have so far: import sys def ...
104
votes
4answers
73k 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 ...
46
votes
8answers
8k 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
7answers
5k 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 ...
10
votes
4answers
10k views

Accessing POST Data from WSGI

I can't seem to figure out how to access POST data using WSGI. I tried the example on the wsgi.org website and it didn't work. I'm using Python 3.0 right now. Please don't recommend a WSGI framework ...
4
votes
5answers
6k views

cant download youtube video

I'm having trouble retrieving the youtube video automatically, heres the code. The problem is the last part. download = urllib.request.urlopen(download_url).read() # Youtube video download script ...
18
votes
6answers
21k views

How can I implement a tree in Python? Are there any built in data structures in Python like in Java?

I am trying to construct a general tree. Are there any built in data structures in Python to implement a tree?
6
votes
4answers
680 views

How can I intercept calls to python's “magic” methods in new style classes?

I'm trying to intercept calls to python's double underscore magic methods in new style classes. This is a trivial example but it show's the intent: class ShowMeList(object): def __init__(self, ...
19
votes
1answer
12k 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 ...
16
votes
1answer
532 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 ...
4
votes
2answers
2k views

How to capture output of Python's interpreter and show in a Text widget?

I have a program in Python with PyQt, designed to run on Windows. This program makes a lot of operations and prints a lot of info. But as I want to freeze it and don't want the prompt screen to ...
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 ...
3
votes
2answers
10k views

How to make python 3 print() utf8

How to make python 3 (3.1) to print("Some text") to stdout in utf8 ... or how to output raw bytes.. Test.py TestText = "Test - āĀēĒčČ..šŠūŪžŽ" # this is UTF-8 TestText2 = b"Test2 - ...
12
votes
4answers
11k views

Python 3.1.1 string to hex

I am trying to use str.encode() but I get >>> "hello".encode(hex) Traceback (most recent call last): File "<stdin>", line 1, in <module> TypeError: must be string, not ...
7
votes
3answers
2k views

Alternative to execfile in Python 3.2+?

Python 2 had the builtin function execfile, which was removed in Python 3.0. This question discusses alternatives for Python 3.0, but some considerable changes have been made since Python 3.0. What ...
6
votes
3answers
4k views

Install NumPy for Python 3.2.3 on OS X 10.7.4

I have been trying for months to get numpy installed for Python 3 but despite copious amounts of Googling and even posting to the numpy mailing list I am still no closer to a solution. I have managed ...
5
votes
5answers
801 views

Is it advisable to go with Python 3.1 for a beginner? [duplicate]

Possible Duplicate: What version of Python should I use if I’m a new to Python? Is it advisable to go with Python 3.1 for a beginner? Or are there any severe drawbacks I would have to ...
2
votes
1answer
1k views

Does a Python 3 SOAP client module exist? [duplicate]

Possible Duplicate: What’s the best SOAP library for Python 3.x? I couldn't find one that works with Python 3.1. Any suggestions for a WSDL-consuming Python 3 SOAP client module/library?
12
votes
3answers
10k views

python 3.0, how to make print() output unicode?

I'm working in WinXP 5.1.2600, writing a Python application involving Chinese pinyin, which has involved me in endless Unicode problems. Switching to Python 3.0 has solved many of them. But the ...
10
votes
1answer
5k views

Are there image processing modules for Python 3?

I am facing an image processing task, and I'm using Python 3.2 (on a 64-bit Windows system). All my searches for image processing libraries have come up with are libraries for older versions of Python ...
1
vote
5answers
246 views

Converting a for loop to a while loop

I am new to Python and I need to convert a for loop to a while loop and I am not sure how to do it. This is what I am working with: def scrollList(myList): negativeIndices = [] for i in ...
0
votes
1answer
500 views

Power set and Cartesian Product of a set python

I am trying to find the cartesian product of two different sets. I can not find anything on the web about cartesian products of sets it's either of list or dictionaries. Also power set is very ...
14
votes
4answers
6k views

Using Python 3.1 with TextMate

TextMate seems to use the built-in Python version I assume (sys.path doesn't work). How do you configure it to use 3.1 instead? I've already installed the 3.1 package and I can use IDLE for ...
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 ...
14
votes
3answers
678 views

getting python sequence assignments & unpacking RIGHT

Consider these expressions... Please be patient... this is a LONG list... (Note: some expression are repeated -- this is just to present a "context") a, b = 1, 2 # simple ...
19
votes
6answers
7k views

Python 3 performance?

On a question of just performance, how does Python 3 compare to Python 2.x?
15
votes
5answers
4k 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 ...
11
votes
6answers
3k views

How can I learn more about Python’s internals?

I have been programming using Python for slightly more than half an year now and I am more interested in Python internals rather than using Python to develop applications. Currently I am working on ...
10
votes
1answer
286 views

Accessing class variables from a list comprehension in the class definition

How do you access other class variables from a list comprehension within the class definition? The following works in Python 2 but fails in Python 3: class Foo: x = 5 y = [x for i in ...
6
votes
4answers
837 views

Python random lines from subfolders

I have many tasks in .txt files in multiple sub folders. I am trying to pick up a total 10 tasks randomly from these folders, their contained files and finally a text line within a file. The selected ...
25
votes
3answers
9k 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 ...
5
votes
3answers
15k views

How to read numbers from file in Python?

I'd like to read numbers from file into two dimensional array. File contents: line containing w, h h lines containing w integers separated with space For example: 4 3 1 2 3 4 2 3 4 5 6 7 8 9

1 2 3 4 5 12