Tagged Questions
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 ...
10
votes
6answers
529 views
Check for mutability in Python?
Consider this code:
a = {...} # a is an dict with arbitrary contents
b = a.copy()
What role does mutability play in the keys and values of the dicts?
How do I ensure changes to keys or values of ...
8
votes
2answers
318 views
How to organize Python modules for PyPI to support 2.x and 3.x
I have a Python module that I would like to upload to PyPI. So far, it is working for Python 2.x. It shouldn't be too hard to write a version for 3.x now.
But, after following guidelines for making ...
8
votes
6answers
3k views
Tutorial for Python - Should I use 2.x or 3.0?
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
130 views
Writing a module for both Python 2.x and 3.x
I've written a pure-Python module for Python 3.0/3.1 which I'd also like to make it compatible with 2.x (probably just 2.6/2.7) in order to make it available to the widest possible audience.
The ...
7
votes
2answers
319 views
Getting ready to convert from Python 2.x to 3.x
As we all know by now (I hope), Python 3 is slowly beginning to replace Python 2.x. Of course it will be many MANY years before most of the existing code is finally ported, but there are things we can ...
6
votes
3answers
162 views
Is “backporting” Python 3's `range` to Python 2 a bad idea?
One of my classes requires assignments to be completed in Python, and as an exercise, I've been making sure my programs work in both Python 2 and Python 3, using a script like this:
#!/bin/bash
# Run ...
6
votes
4answers
225 views
Uses of Python's “from” keyword?
Are there any other uses for Python's "from" keyword aside from import statements?
5
votes
5answers
132 views
How do I learn Python 2 if I already know Python 3?
I have some knowledge of Python 3 (I'm not a beginner, but I'm not an expert). I'm interested in web development, so I want to use Django. What are the differences between the two versions of Python? ...
5
votes
1answer
237 views
Unicode literals that work in python 3 and 2
So I have a python script that I'd prefer worked on python 3.2 and 2.7 just for convenience.
Is there a way to have unicode literals that work in both? E.g.
#coding: utf-8
whatever = 'שלום'
The ...
2
votes
2answers
273 views
How to run Google app engine web server on Windows correct?
I tried to run Google App Engine development server using Python 3.2 and Python 2.7, got errors on both:
Python 2.7:
D:\nCdy\WA>C:\Python27\python.exe "D:\Program ...
2
votes
4answers
274 views
The new print function in Python 3.x
I've heard several times that print being a function (3.x) is better than it being a statement (2.x). But why?
I was a fan of it being a statement mainly because it allowed me to type two less ...
2
votes
1answer
57 views
python _2or3 module?
I am writing a module to let me write code in python 3, but still run it in 2. It looks surprisingly easy actually... anything else I should add? From my (limited) flailing on the interactive ...
2
votes
3answers
260 views
Can one Python project use both 2.x and 3.x code?
I'm going to start on a long (~1-year) programming project in Python. I want to use wxPython for my GUI (supports 2.6), but I also want to use 3.1 for the rest of the project (to start using the 3.x ...
1
vote
3answers
135 views
In current scenario, should a beginner learn Python 2.x or 3.x? [closed]
Possible Duplicate:
Should I learn Python 3 or 2.x?
Like I mentioned in the question itself, considering the "now" scenario, should a beginner start with Python 2.x or 3.x? Please consider ...
1
vote
3answers
147 views
porting Python 2 program to Python 3, random line generator
I have a random line generator program written in Python2, but I need to port it to Python3.
You give the program the option -n [number] and a file argument to tell it to randomly output [number] ...
1
vote
4answers
80 views
Help me make my Python 2 code work in Python 3
import math,sys,time;i=0
while 1: sys.stdout.write("\r"+':(__)'[:3+int(round(math.sin(i)))]+'n'+':(__)'[3+int(round(math.sin(i))):]);sys.stdout.flush();time.sleep(.15);i+=0.5*math.pi
I wrote ...
1
vote
6answers
686 views
Why is super() broken in Python-2.x?
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:
...
1
vote
3answers
430 views
Is it safe to replace MacOS X default python interpreter?
i'm new to the Mac OS X world so i have to ask you this.
I have the default python 2.6.1 installed as /usr/bin/python and the 3.1.2 as /usr/local/bin/python3.1 .
Considering that i use only 3.x ...
1
vote
2answers
95 views
How to use python modules that were renamed 3 in a cross compatible way?
There are several modules that were renamed in Python 3 and I'm looking for a solution that will make your code work in both python flavors.
In Python 3, __builtin__ was renamed to builtins. Example:
...
0
votes
4answers
74 views
How to return multiple values from *args?
I have a hello function and it takes n arguments (see below code).
def hello(*args):
# return values
I want to return multiple values from *args. How to do it? For example:
d, e, f = hello(a, b, ...
0
votes
2answers
65 views
Python3: option parser, check if a boolean option has been set
I want to a true/false option (-w) to my program.
If the option is set, I will be sorting the output.
I have the following option added:
parser.add_option("-w", "--without-replacement",
...
0
votes
1answer
122 views
porting Python 2 syntax to Python 3
I'm trying to run the following code in python3, but it has been written for I'm pretty sure python2:
f = open(filename, 'r')
self.lines = f.readlines()
f.close()
if self.lines[-1] != "\n" :
...
0
votes
4answers
446 views
Python 3 Syntax Changes
So my work which had used older Python 2 is doing some code updating, anyways I am just learning python and am actually pretty new here, but what are the major syntax changes that went from 2-->3
Or ...
-1
votes
3answers
98 views
What are the differences between Python 2 and 3? [closed]
Possible Duplicates:
1. To learn python 2 then 3, or 3 from the start?
2. Python 2 vs Python 3 and Tutorial
So i posted recently asking about what my next programming language should be and ...