Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
13
votes
5answers
338 views
Python 2 and Python 3 dual development
I'm just starting a new Python project, and ideally I'd like to offer Python 2 and 3 support from the start, with minimal developmental overhead. My question is, what is the best way of doing this for ...
13
votes
3answers
9k views
How can I validate a date in Python 3.x?
I would like to have the user input a date, something like:
date = input('Date (m/dd/yyyy): ')
and then make sure that the input is a valid date. I don't really care that much about the date ...
10
votes
1answer
2k views
What does Python optimization (-O or PYTHONOPTIMIZE) do?
The docs only say that Python interpreter performs "basic optimizations", without going into any detail. Obviously, it's implementation dependent, but is there any way to get a feel for what type of ...
10
votes
1answer
3k views
Usage of Python 3 super()
I wonder when to use what flavour of Python 3 super().
Help on class super in module builtins:
class super(object)
| super() -> same as super(__class__, <first argument>)
| super(type) ...
7
votes
4answers
4k views
How to set sys.stdout encoding in Python 3?
Setting the default output encoding in Python 2 is a well-known idiom:
sys.stdout = codecs.getwriter("utf-8")(sys.stdout)
This wraps the sys.stdout object in a codec writer that encodes output in ...
4
votes
3answers
836 views
Images not showing when running a frozen pyqt app on another computer
I have a PyQt4 program that I froze using cx_freeze. The problem I am having is when I make a QGraphicsPixmapItem, which it is getting its' pixmap made from a SVG file, the Item gets made no problem, ...
3
votes
3answers
147 views
The same method for class and instance
I have class Books and method select in it. Also there is an instance of that class called book. I want to be able to do both Books.select(where='...') and book.select(where='...'):
class Books():
...
18
votes
3answers
840 views
Python 3.x rounding behavior
I was just re-reading What’s New In Python 3.0 and it states:
The round() function rounding strategy and return type have changed.
Exact halfway cases are now rounded to the nearest even result ...
16
votes
7answers
703 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():
...
16
votes
12answers
4k views
Why won't you switch to Python 3.x? [closed]
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 ...
8
votes
6answers
3k views
Tutorial for Python - Should I use 2.x or 3.0? [closed]
Python 3.0 is in beta with a final release coming shortly. Obviously it will take some significant time for general adoption and for it to eventually replace 2.x.
I am writing a tutorial about ...
7
votes
1answer
1k views
Calling a Python function with *args,**kwargs and optional / default arguments
In python, I can call a function as follows:
def func(kw1=None,kw2=None,**kwargs):
...
In this case, i can call func as:
func(kw1=3,kw2=4,who_knows_if_this_will_be_used=7,more_kwargs=Ellipsis)
...
7
votes
1answer
568 views
How do I print to the OS's default printer in Python 3 (cross platform)?
I have a Python 3 script that is going to be doing some regex substitution on some Rich Text Files (rtf) and I would like to be able to print out a whole directory's files on Windows, Linux, and Mac. ...
6
votes
1answer
4k views
builtins.TypeError: must be str, not bytes
I've converted my scripts form python 2.7 to 3.2,and I have some bug.
# -*- coding: utf-8 -*-
import time
from datetime import date
from lxml import etree
from collections import OrderedDict
# ...
6
votes
4answers
4k views
Module subprocess has no attribute 'STARTF_USESHOWWINDOW'
Hi Stack Overflow users,
I've encountered a frustrating problem, can't find the answer to it.
Yesterday I was trying to find a way to HIDE a subprocess.Popen. So for example, if i was opening the ...
6
votes
2answers
10k views
Handling \r\n vs \n newlines in python on Mac vs Windows
I have a python script that gave different output when run on a Windows machine and when run on a Mac. On digging deeper, I discovered that it was because when Python read in line breaks on the Mac ...
6
votes
4answers
5k views
Is there an online interpreter for python 3? [duplicate]
Possible Duplicate:
Python 3 online interpreter / shell
Where can I find an online interpreter for Python 3? I'm learning Python but can't install it at work where I'd like to do some ...
4
votes
3answers
4k views
Schedule a repeating event in Python 3
I'm trying to schedule a repeating event to run every minute in Python 3.
I've seen class sched.scheduler but I'm wondering if there's another way to do it. I've heard mentions I could use multiple ...
1
vote
2answers
272 views
Python time limit
I have a homework to do and I really need a solution. I have been trying to do this till yesterday but i do not know how.
Program has to generate and print a letter or a number and than a user has to ...
8
votes
5answers
392 views
Suppressing treatment of string as iterable
UPDATE:
An idea to make built-in strings non-iterable was proposed on python.org in 2006. My question differs in that I'm trying to only suppress this features once in a while; still this whole ...
7
votes
4answers
4k views
Python3: writing csv files
I'm trying to use Python 3.2 on a Windows computer to write a simple CSV file, however I'm having no luck. From the csv module documentation for Python 3.2:
>>> import csv
>>> ...
7
votes
3answers
8k views
Python 3 and mysql
I am using activestate python 3 on windows and wanted to connect to my mysql database.
I heard that mysqldb was the module to use.
I can't find mysqldb for python 3.
Is there a repository available ...
5
votes
3answers
212 views
Intercept operator lookup on metaclass
I have a class that need to make some magic with every operator, like __add__, __sub__ and so on.
Instead of creating each function in the class, I have a metaclass which defines every operator in ...
4
votes
1answer
5k views
TypeError: POST data should be bytes or an iterable of bytes. It cannot be str
I just updated from python 3.1 to python 3.2 (formatted HD) and one of my scripts stopped working. It gives me the error in the title.
I would fix it myself but I don't even know what an iterable of ...
3
votes
3answers
112 views
How to replace a string in a function with another string in Python?
I want to do this:
>>> special = 'x'
>>> random_function('Hello how are you')
'xxxxx xxx xxx xxx'
I basically want to return the string: {(str) -> str}
I keep on getting ...
2
votes
2answers
159 views
PyEval_InitThreads in Python 3: How/when to call it? (the saga continues ad nauseum)
So, basically there seems to be massive confusion/ambiguity over when exactly PyEval_InitThreads() is supposed to be called, and what accompanying API calls are needed. The official Python ...
2
votes
4answers
3k views
Python - Remove and Replace Printed items
[Using Python 3.2]
I was wondering if it was possible to remove items you have printed in python, not from the python gui but from the command propt.
e.g.
a = 0
for x in range (0,3):
a = a + ...
1
vote
1answer
472 views
Pygame for Python 3 on OSX Mountain Lion?
I have been trying to get this to work for days now, with no luck. All of the installation walkthroughs I can find either talk about pygame on mountain lion with python 2.x, or pygame with python 3 on ...
1
vote
6answers
1k views
Can't run Python from cmd line
I am a programming (and Python) novice. I am unable to run any python script in command prompt of my WinXP 64-bit laptop. I assigned the path and confirmed it by typing set path. I have Python32.
I ...
1
vote
4answers
730 views
Persistence of urllib.request connections to a HTTP server
I want to do some performance testing on one of our web servers, to see how the server handles a lot of persistent connections. Unfortunately, I'm not terribly familiar with HTTP and web testing. ...
1
vote
3answers
2k views
Python 3.1 and Sublime Text 2 error
I want to use a SublimeText2 as IDE for developing applications in Python.
I have the following problem :
When I make a new file, save it as a python and do Tools -> Build System -> Python
CTRL + B
...
1
vote
2answers
3k views
Doc, rtf and txt reader in python
Like csv.reader() are there any other functions which can read .rtf, .txt, .doc files in Python?
0
votes
1answer
71 views
Python - output in rows of 16
Is there any way I can have my output be placed in rows of 16? Also these rows need to have 16 columns that line up with each other vertically. I would like to do this without importing anything.
def ...
0
votes
2answers
192 views
How to give points for each indices of list
def voting_borda(rank_ballots):
'''(list of list of str) -> tuple of (str, list of int)
The parameter is a list of 4-element lists that represent rank ballots for a single riding.
The Borda ...
0
votes
2answers
950 views
python 3.2 import issue
I've been troubleshooting for the past few days trying to install distribute so I can start importing 3rd party modules. I haven't used python for a couple years so I'm re-remembering everything which ...
0
votes
2answers
832 views
Python 3 regular expression to find multiline comment
I'm trying to find comment blocks in PHP source code using regular expressions in Python 3. The PHP comments are in this format:
/**
* This is a very short block comment
*/
Now I came up with the ...
-2
votes
1answer
408 views
How to stop command prompt from closing in python?
I am very new to python.. I used the code
x = input(" Hey what is your name " )
print(" Hey, " + x)
input(" press close to exit ")
Because i have looked for this problem on internet and ...
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 ...
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 ...
22
votes
3answers
17k 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 ...
10
votes
2answers
7k views
ctypes - Beginner
I have the task of "wrapping" a c library into a python class. The docs are incredibly vague on this matter. It seems they expect only advanced python users would implement ctypes. Well i'm a ...
8
votes
5answers
2k views
Why is super() broken in Python-2.x? [closed]
It's often stated that super should be avoided in Python 2. I've found in my use of super in Python 2 that it never acts the way I expect unless I provide all arguments such as the example:
...
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 ...
22
votes
4answers
22k views
14
votes
3answers
9k views
How to install pip with Python 3?
I want to install pip. It should support Python 3, but it requires setuptools, which is available only for Python 2.
How can I install pip with Python 3?
16
votes
1answer
4k 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 ...
8
votes
1answer
11k views
“Unicode Error ”unicodeescape" codec can't decode bytes… Cannot open text files in Python 3
I am using python 3.1, on a windows 7 machines. Russian is the default system language, and utf-8 is the default encoding.
Looking at the answer to a previous question, I have attempting using the ...
20
votes
4answers
6k 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!"
...
16
votes
1answer
4k views
What does a b prefix before a python string means?
In a python source code I stumbled upon I've seen a small b before a string like in:
b"abcdef"
I know of u prefix that means unicode and r prefix that means raw.
What does the b stand for and in ...
13
votes
8answers
11k views
Generate a random letter in Python
Is there a way to generate random letters in Python (like random.randint but for letters)? The range functionality of random.randint would be nice but having a generator that just outputs a random ...
