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)

3
votes
1answer
2k views

Python won't run due to ImportError: cannot import MAXREPEAT

I am new to python but have been using both IDLE and EricIDE for a few weeks without any major problems. I was editing a program I had written that called random.randint() function and it wouldn't ...
3
votes
3answers
148 views

how soon is `__del__` called after reference count drops to zero?

How soon after the reference count reaches zero is __del__ method called? Does the language promise that it's done right away, before any other use code can execute? Or can each implementation do what ...
3
votes
4answers
124 views

Yielding sub combinations

I need a function which returns subsegments for a given segment. For example, sub_combinations("ABCD") should yield: ("A", "B", "C", "D") ("A", "B", "CD") ("A", "BC", "D") ("A", "BCD") ("AB", "C", ...
3
votes
2answers
554 views

Why does setattr fail on a bound method

In the following, setattr succeeds in the first invocation, but fails in the second, with: AttributeError: 'method' object has no attribute 'i' Why is this, and is there a way of setting an ...
3
votes
1answer
1k views

How to chunk a list in Python 3?

I found the following code that is compatible with python2 from itertools import izip_longest def grouper(n, iterable, padvalue=None): "grouper(3, 'abcdefg', 'x') --> ('a','b','c'), ...
3
votes
1answer
2k views

Python Sort Algorithm

I am implemented different sorting algorithms in Python to better understand them, and I was wondering what type of sort does Python's built-in sort method implement?
3
votes
4answers
2k views

Understanding A Chain of Imports in Python

I know there are several similar questions, but I'm struggling to understand the error I'm getting and browsing the docs and similar questions hasn't helped yet. If anything, the similar questions ...
3
votes
4answers
636 views

Take up Python 3.x or 2.x? [closed]

I started learning Python a few months back - and was immediately faced w/ this question. At that point I made the conscious decision to continue w/ 2.x [2.7.1 to be precise], because I was going to ...
2
votes
1answer
1k views

Python 3.2 - cookielib

I have working 2.7 code, however there are no such thing as cookielib and urllib2 in 3.2? How can I make this code work on 3.2? In case someone is wondering - I'm on Windows. Example 2.7 import ...
2
votes
2answers
338 views

How do chained assignments work?

A quote from something: >>> x = y = somefunction() is the same as >>> y = somefunction() >>> x = y Question: Is x = y = somefunction() the same as x = ...
2
votes
3answers
396 views

Python datetime.strptime month specifier doesn't seem to work

The month format specifier doesn't seem to work. from datetime import datetime endDate = datetime.strptime('10 3 2011', '%j %m %Y') print endDate 2011-01-10 00:00:00 endDate = datetime.strptime('21 ...
2
votes
1answer
241 views

Python 3.1.3 open mbox file, really slow compared to python 2.x?

I tried in python 3.1.3 to open an mbox file, with the mailbox module. There are only 3 mails in it and it is only 27k big. But when reading the mails my CPU uses 100% for about 2-3 minutes, until it ...
2
votes
3answers
887 views

Should I learn Python 3 or 2.x? [duplicate]

Possible Duplicate: To learn python 2 then 3, or 3 from the start? I've read somewhere both are rather different regarding syntax. I looked for resources and tutorials, many of them for ...
2
votes
3answers
322 views

capitalization of library class names

Why do collection.defaultdict and collection.OrderedDict have different capitalizations? Is there some subtle difference that I should be aware of? (P3K)
2
votes
2answers
83 views

Can distribute setuptools be used to port packages implemented in python 2 to 3

Found some info on porting packages from python 2 to 3 using distribute setuptools in below link. http://packages.python.org/distribute/python3.html I have a C api which could be build using python ...
1
vote
1answer
421 views

HTTPS request results in reset connection in Windows with Python 3

When I use the following function with the Python 3.2.3 package in cygwin it hangs on any request to any https host. It will throw with this error: [Errno 104] Connection reset by peer, after 60 ...
1
vote
2answers
242 views

Using Sin-1 or inverse sin in python

Here is my code: # point of intersection between opposite and hypotenuse x,y = pygame.mouse.get_pos() # using formula for length of line lenline1 = (x-x)^2 + (300-y)^2 lenline2 = (x-700)^2 + ...
1
vote
1answer
1k views

Install MatPlotLib 1.2.x on OS X Lion 10.7.4 and Python 3.2.2

I asked a question a couple of days ago regarding installing numpy on the same system. Thankfully, I managed to solve that one myself but unfortunately I am now stuck trying to install matplotlib. I ...
1
vote
1answer
2k views

Installing PyQt 4.9 on CentOS 6.0 Fails

I'm totally fed up with this problem. I'm trying to install PyQt 4.9 on my server running on CentOS 6.0. When I install it, I get like this [root@myserver PyQt]# python3 configure.py -k Determining ...
1
vote
1answer
972 views

Undefined boost python symbol: boost::python::detail::init_module

I get an undefined symbol error when trying to import an extension compiled with boost python, and the symbol is one that should be included in the boost library. I am using Boost 1.46.1, Python ...
1
vote
1answer
299 views

python 3 IDLE progressbar/loadingbar

I am using the standard IDE that comes with python3. I would like to make use of the backspace function (\b) within the ILE in order to create a NICE LOOKING progressbar. Even a simple percentage ...
1
vote
1answer
394 views

Python Interactive Shell - SyntaxError with print

I am new to Python. I installed Python on my Windows 2003 Virtual Machine; Launched the Python Shell; Typed the following code - print "Hello World" And it spit right back at me the following ...
0
votes
2answers
180 views

How to shorten this code without using bunch of if statements

CONSTANTS: NDP_INDEX = 0 GREEN_INDEX = 1 LIBERAL_INDEX = 2 CPC_INDEX = 3 A dist of the indices where each party's data appears in a 4-element list. PARTY_INDICES = [NDP_INDEX, GREEN_INDEX, ...
0
votes
1answer
268 views

Converting a string to and from Base 64

I am trying to write two programs one that converts a string to base64 and then another that takes a base64 encoded string and converts it back to a string. so far i cant get past the base64 encoding ...
0
votes
2answers
52 views

strange while statement behaviour?

I cannot figure out why the following statements dont work. randomKey = random.choice(list(topic.keys())) randomValue = random.choice(topic[randomKey]) current = "-" * len(randomValue) while ...
0
votes
1answer
138 views

Setting Selected property of Row in TreeView dynamically in Gtk3 (python)

This is the same problem as in my previous question, but I moved to python3/gtk3 to be able to use a css for setting the basic properties. From the python file: self.w = Gtk.Window() ...
0
votes
1answer
83 views

Using pickle.dumps to hash mutable objects

I understand why putting mutable objects in a dictionary is dangerous. However, converting all lists/sets to tuples/frozensets is expensive; and for many types, there's no easily available immutable ...
0
votes
1answer
886 views

Need help installing requests for python 3

I'm trying to get the "requests" module installed for python 3 on FreeBSD. I'm using python 3.2, but I also have python 2.6 installed on the machine. I got pip installed. pip --version pip 1.1 ...
0
votes
1answer
1k views

Drawing in PyGobject (python3)

I'm trying to write simple graphic editor using PyGObject and python 3. I need to draw lines with different color and width using mouse. I found many examples like this but nothing more complex. How ...
0
votes
2answers
1k views

Recursively find all coin combinations that produces a specified amount

My apologies in advance. I'm aware that this question has been asked before with answers that have not produced the results I want/need. I am making an attempt to write a function that does the ...
0
votes
3answers
541 views

translate my sequence?

I have to write a script to translate this sequence: dict = {"TTT":"F|Phe","TTC":"F|Phe","TTA":"L|Leu","TTG":"L|Leu","TCT":"S|Ser","TCC":"S|Ser", "TCA":"S|Ser","TCG":"S|Ser", ...
0
votes
3answers
348 views

Grouping lists within lists in Python 3

I have a list of lists of strings like so: List1 = [ ['John', 'Doe'], ['1','2','3'], ['Henry', 'Doe'], ['4','5','6'] ] That I would like to turn ...
0
votes
3answers
445 views

convert code from Python 2.x to 3.x

This is a followup on my previous question, I am using the 2to3 tool as suggested by Senthil Kumaran It seems to work well but it doesn't pick up this part: raise LexError,("%s:%d: Rule '%s' ...
0
votes
3answers
2k views

Scraping a web page with java script in Python

i'm working in python 3.2 (newb) on windows machine (though i have ubuntu 10.04 on virtual box if needed, but i prefer to work on the windows machine). Basically i'm able to work with the http module ...
-1
votes
0answers
39 views

Use a function in a function itself in another function? [closed]

Hello im brand new to python (started 3 days ago) I have a little project : create a little software that react to my input. ex: input : Open vlc software: say "Opening vlc" and it opens ...
-1
votes
1answer
367 views

Combining rows in DataFrame

I have a pandas DataFrame with 18 columns and about 10000 rows. My first 3 columns have separate values for YEAR, MONTH, and DAY. I need to merge these three columns and have the entire date in one ...
-1
votes
1answer
123 views

whats another way to write python3 zip [closed]

Ive been working on a code that reads lines in a file document and then the code organizes them. However, i got stuck at one point and my friend told me what i could use. the code works but it seems ...
-1
votes
3answers
202 views

Python 3.2.3 programming…Almost had it working [closed]

x = float(input("What is/was the cost of the meal?")) y = float(input("What is/was the sales tax?")) z = float(input("What percentage tip would you like to leave?")) print ("Original Food Charge: ...
-1
votes
1answer
934 views

Issue with installing mod_wsgi on a CentOS 5

i have to install the mod_wsgi library on a CentOS 64bits and python3.2, but now is giving me this mistake when i try to run the 'make' command, anyone could help me, thanks in advance! ...
-7
votes
1answer
167 views

The 8 queens puzzle [closed]

Please correct the program I wrote to make it work or show me what I need to fix. Thanks a lot. It doesn't work. I need help to fix it in order to make it work. The program needs be written ...
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 ...
17
votes
5answers
1k 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 ...
7
votes
3answers
4k views

Python 3 smtplib send with unicode characters

I'm having a problem emailing unicode characters using smtplib in Python 3. This fails in 3.1.1, but works in 2.5.4: import smtplib from email.mime.text import MIMEText sender = to = ...
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 ...
28
votes
5answers
2k 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__', ...
13
votes
9answers
6k views

Graphing in Python 3.x

In Python 2.6, I used matplotlib to make some simple graphs. However, it is incompatible with Python 3.1. What are some alternative modules that can accomplish the same thing without being very ...
19
votes
1answer
707 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. ...
18
votes
2answers
2k views

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

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

Python3 error: “Import error: No module name urllib”

Here's my code: from urllib.request import urlopen response = urllib.urlopen("http://www.google.com") html = response.read() print(html) Any help?
8
votes
3answers
2k views

Is there an equivalent of PyMongo for Python 3.2?

I attempted to install pymongo to my Windows box with Python 3.2 through easy_install, only to find that it will not install due to incompatibilities with Python 3.2. Therefore, is there an ...

1 2 3 4 5 12