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
5answers
4k views

modulo operator in python

What does modulo in the following piece of code do ? from math import * 3.14 % 2 * pi How do we calculate module on a floating point number ?
0
votes
2answers
112 views

Extracting domain name from email in Python (including several special cases)

I am trying to extract just the domain name from email string, using Python. For a basic case such as abc@xyz.com, the following works well: string.split("@")[1].rstrip(".com") #would give me "xyz" ...
2
votes
2answers
387 views

PyCrypto install error on Windows

I am trying to install PyCrypto 2.6 Library on my computer. But I keep getting the following error D:\Software\Python\package\pycrypto-2.6>python setup.py build running build running build_py ...
-4
votes
3answers
68 views

Reverse game python [closed]

Hello i know this is asked a couple of times already but i couldnt find the answer. The question is about the reverse guess my number game. The code executes the program but not in a "humanlike" way. ...
0
votes
1answer
24 views

tkinter askyesno message box behaviour

messagebox.askyesno(0.0,'"{0}"{1} \n {2}\n'.format(search_analyte.get(),' is not in the database.','Add,if appropriate')) print (str(messagebox.askyesno())) if messagebox.askyesno() ...
0
votes
1answer
30 views

tkinter messagebox askyesno starnge response

As per request by Bryan Oakley,fuller code pertaining to my question testerday ( don't know how to do this without another question) #!/usr/local/bin/python3 # -*- coding: utf-8 -*- ...
0
votes
3answers
57 views

Getting output of a process at runtime

I am using a python script to run a process using subprocess.Popen and simultaneously store the output in a text file as well as print it on the console. This is my code: result = ...
2
votes
4answers
58 views

Removing looped new line?

I have a python program that makes a triforce, but in the middle, between loops, a new line is appended. How can I remove this? Source code: var = 10 for x in range(var+1): print(' ...
3
votes
2answers
68 views

How to convert string to dictionary, and count the number of each word

I am just wondering how i would convert a string, such as "hello there hi there", and turn it into a dictionary, then using this dictionary, i want to count the number of each word in the dictionary, ...
3
votes
2answers
165 views

Python3: Looking for alternatives to gevent and pylibmc/python-memcached

So, I have decided to write my next project with python3, why? Due to the plan for Ubuntu to gradually drop all Python2 support within the next year and only support Python3. (Starting with Ubuntu ...
0
votes
1answer
52 views

Use of tildes and ñ python SVN

Good afternoon, I have a script that searches for some documents in a repository without using a client, but when it returns the URLS (i need that), prints the "ó" like this m?\195?\179viles, i put # ...
3
votes
3answers
89 views

asynchronous subprocess with timeout

I have a problem with spawning asynchronous subprocesses with timeout in Python 3. What I want to achieve: I want to spawn multiple processes asynchronously without waiting for a results but I want ...
-9
votes
0answers
47 views

having trouble with broken code [closed]

we want to: greet the user, tell them what we're doing** ask the user to choose an book** pass the book's url to a function that: gathers the name, author, start line and end line makes a ...
2
votes
2answers
63 views

read raw input from keyboard in python

I'm trying to get the raw input of my keyboard in python. I have a Logitech gaming keyboard with programmable keys, but Logitech doesn't provide drivers for Linux. So i thought i could (try) to write ...
1
vote
0answers
25 views

File I/O has caused a “[Conflict]”

I wrote a small program that is supposed to run continuously analyzing some data. I usually just let it run in the background on my computer. A couple of times now, I have come back to my computer to ...
0
votes
1answer
104 views

How do I get started with PyWin32 [closed]

I am looking for good resources to get started with pywin32. I haven’t found much in the way of tutorials, books or blogs that talk about it. I’d like to be able to use python to automate some of my ...
1
vote
0answers
67 views

I'm a beginner who could use some help rewriting messy code. Would anyone care to lend assistance? [closed]

I know that this is a complete mess and does not even come close to fitting PEP8. That's why I'm posting it here. I need help making it better. I'm trying to become a better programmer. If this is ...
0
votes
1answer
20 views

how do I install cmislib for Python 3.3

Im trying to install the latest cmislib for python 3 (I have pydev installed) using easy_install (which Ive never used before) as described in http: ...
-3
votes
2answers
37 views

How do you set up formatting in vim?

Earlier, when I used open .py files in vim on ubuntu, they would be well formatted, with separate colours for separate segments of the program. Now, when I am using VIM on ubuntu, all the text in the ...
0
votes
1answer
21 views

When integrating Python how much of the version has to match?

This question is about integrating Python in another program. If I link against Python, I have an import lib named python27.lib or similar (e.g. python26.lib) for earlier 2.x versions. Apparently ...
-4
votes
3answers
55 views

Syntax exception [closed]

I am getting a syntax exception in this code at a** + b** == c**: i don't know what the prob is help me out.. def getValue(): a, b,c =1,2,3; while a: while b: while c: ...
0
votes
1answer
18 views

Is it possible to return a list of a class in celery?

I have a question about Celery. I am calling a function named task and I want to return a list of a specific class. But if I do this I get an error on my server: No module named 'modelsgert' ...
0
votes
1answer
25 views

Insert a .jpg in a canvas with tkinter and Python 3.2

So I want to put a .jpg in a canvas, all i found on internet is to use PIL but i'm using Python 3.2 so PIL doesn't work. What can i do to insert a .jpg in a canvas with Python 3.2 ?
7
votes
2answers
2k views

How to use pip with Python 3.x besides Python 2.x

I use pip and I find it very handy. Last week I installed Python 3.2 (besides Python 2.7 on Ubuntu) and slowly started to pair modules I use in Python 2.x. So I wonder, what approach should I take to ...
0
votes
1answer
34 views

pylint error runs fine in python3.2 but fails in python3.3

Running Ubuntu QQ: I have a Python project that uses PyQt. In several places I import QtCore and QtGui: from PyQt4 import QtCore, QtGui Until now, I have been using python3.2.x (3?) When I run ...
0
votes
1answer
72 views

What is a better way to solve this exercise?

I'm new to python - and programming - and was given this exercise. I'm able to get the expected result with the code below, but was wondering what other ways there are to solve this using Python 3.x. ...
7
votes
6answers
4k views

Removing control characters from a string in python

I currently have the following code def removeControlCharacters(line): i = 0 for c in line: if (c < chr(32)): line = line[:i - 1] + line[i+1:] i += 1 ...
0
votes
1answer
40 views

OS X 10.7 + Python 3.3 + numpy + matplotlib

I have been trying to get Matplotlib running in 3.3 with no luck. I downloaded the latest github repos for matplotlib, which depends on numpy. For numpy I did 'python3 setup.py build ...
0
votes
1answer
61 views

What is the purpose of the __init__.py? [duplicate]

When creating a Python package, I am told to create a blank file called init.py. What I don't understand is why I need to create this file. The distutils build script doesn't modify it, so five builds ...
1
vote
1answer
21 views

Can I use WordPress to power a PyPI documentation page?

You can upload documentation to run alongside a package on PyPI, but i was wondering if those docs could be hosted using WordPress. The requirements call for a recent copy of PHP and a MySQL database. ...
0
votes
1answer
38 views

How to surround only string with quotations when joining dictionary values using Python?

i'm practicing on Python and trying to create a class that helps performing database operations, but when inserting to a database here's the code : def Insert(self, **kwargs): ...
1
vote
1answer
468 views

StringIO in python3

I am using python 3.2.1 and I can't import the StringIO module. I use io.StringIO and it works but i can't use it with genfromtxt of numpy like this: x="1 3\n 4.5 8" ...
0
votes
2answers
59 views

How to unpack from a binary file a byte array using Python?

I'm giving myself a crash course in reading a binary file using Python. I'm new to both, so please bear with me. The file format's documentation tells me that the first 16 bytes are a GUID and ...
1
vote
1answer
72 views

While reading file on Python, I faced the error that said UnicodeDecodeError. What can I do to resolve this error?

This is one of my own project. This will later help benefits other people in game I am playing (AssaultCube). Its purpose is to break down the log file and make it more easier to read for users. I ...
0
votes
2answers
55 views

AttributeError: 'child' object has no attribute '_name'

I'm a beginner to Python and trying to understand class inheritance. But when i try the following code i get this error : AttributeError: 'child' object has no attribute '_name' And here's the code ...
0
votes
1answer
46 views

Multiple operations in a List Comprehension

Say I do something like this: vList=[1236745404] fList=[ "<td>{}</td>".format ] [ f(x) for f, x in zip(fList, vList) ] But now I want to convert the integer into a time string by ...
0
votes
2answers
42 views

Incorrect Output While Comparing Two Lists

I'm trying to compare two lists to generate a buy/sell signals. The first list is a list of prices, while the second list is the simple moving average for those prices. result = [590.0, 600.0, 590.0, ...
0
votes
1answer
18 views

Python 3.3 - Getting Header and redirect the results

I would like to create a script that look to a file, read each line (which are url) and fetch the HTTP header for me. I have a questions : I try to redirect the result to a text file but, anyhow I ...
1
vote
1answer
35 views

Cython - convert wide string (wchar_t *) to Python 3 unicode object

I'm wrapping a C library to Pyhon 3 using Cython and i'm looking for a way of converting wchar_t string to python object which i want to return from a function. There's an answer in this question, but ...
2
votes
2answers
52 views

Input int list in Python 3

I tried to change from Python 2.7 to 3.3.1 I want to input 1 2 3 4 and output in [1,2,3,4] In 2.7 I can use score = map(int,raw_input().split()) What should I use in Python 3.x?
0
votes
1answer
36 views

What am I missing to pickle and unpickle Unicode

I'm working on a Py3k program that I want to be able to accept Unicode strings and pickle/unpickle them. However, it is defaulting to an ASCII codec, and complaining about a Unicode error: ...
1
vote
1answer
58 views

Parse string with date and timezone to UTC datetime

I'm coding a Python 3 script that receives a full date with offset and I want to be able to compare it to another date without offset. The main problem I'm facing is that Python doesn't seem to like ...
0
votes
1answer
19 views

Open a Berkeley 1.85 DB file in Python 3.3

I'm working on converting this system I have to Python 3.3. On one end (where I am now), there's a Perl script that generates a large hash table tied to a Berkeley DB file where the keys are numbers ...
0
votes
2answers
87 views

Length function in python is not working the way I want to

I am newbie to programming and python. I looked online for help and I doing as they say but I think I am making a mistake which I am not able to catch. For now all I'm trying to do here is: if the ...
1
vote
1answer
39 views

Is it possible to deploy python3 applications as self-executables in MAC, linux and Windows ? how? [duplicate]

considering another stackoverflow question that was posted at 2009 and tools like py2exe that haven't been updated since 2008, is it possible ? I am creating an application that saves and retrieves ...
0
votes
2answers
1k views

Adding Header to Numpy array

I have an array I would like to add a header for. This is what i have now: 0.0,1.630000e+01,1.990000e+01,1.840000e+01 1.0,1.630000e+01,1.990000e+01,1.840000e+01 ...
0
votes
0answers
35 views

Python3 can not find module xmlrpc from unittests

I am working on a python project with 2 other people, but I can't run our tests. When I run the tests using python3 -m unittest I get this output Traceback (most recent call last): Traceback (most ...
0
votes
6answers
1k views

Stuck at Learnpython.org Tutorial (Regarding Functions)

I've just started learning Python a few hours ago, and there seems to be a problem that I simply can't seem to get. They ask me to: Add a function named list_benefits()- that returns the following ...
1
vote
1answer
239 views

installing numpy using python3.2 Mac OSX Lion

Trying to build numpy on OSX Lion. I followed the instructions from this post, using a replacing 10.6 with 10.7 for LDSHARED. However when I run setup.py it seems like it is still using 10.6?? how do ...
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 ...

1 2 3 4 5 114