python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
File Inside Python Module Not Included (Django, Py2 to Py3 Conversion)
I am migrating a Django project from 2 to 3 and am running into an import(?) error.
One of the apps/modules contains an __init__.py, admin.py, forms.py, models.py, urls.py, and view.py, but when the m...
thekthuser
Votes: 0
Answers: 1
Python 2 to 3, error converting a list(zip(*aList)[1])
I have a small chunk of code which not being a python guru I am not sure what it is really 'doing', but it fails under python3:
if indSoundsToPlay:
indSoundsToPlay = list(indSoundsToPlay)...
Codejoy
Votes: 0
Answers: 0
Automatically remove leading u'...' in Python strings
I am working on migrating an old Python code base to Python3.
There are many strings which have the "u" prefix. Example u'Umlaut üöö'
Is there an automated way to remove the leading "u&...
guettli
Votes: 0
Answers: 1
python2 to python3 conversion cannot find imports now. Namespacing issue?
While I am able to fix this and it is not a huge issue. I am curious if I am doing something wrong or went about something wrong. I inherited a codebase that is python2 to upgrade it to python3. So...
Codejoy
Votes: 0
Answers: 0