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)

0
votes
0answers
3 views

Tkinter insert a Combobox inside a Treeview widget

For example, lets create a Treeview widget using a class as follows: class FiltersTree: def __init__(self, master, filters): self.master = master self.filters = filters ...
0
votes
1answer
2 views

Dynamically add rows to GTK List PyGObject

I'm trying to add items dynamically detected into a PyGTK listview. I'm using Python 3 and PyGObject. Here are some example lists: ['MomAndKids', 'ddwrt', 'Squirt', 'blurb'] ['WPA1', 'Open', ...
0
votes
1answer
12 views

using datetime object as an argument

I have been struggling to understand how to use datetime objects. I want to use datetime.date instances as keys in a dictionary. I then want to be able to return dates within specified ranges using ...
0
votes
1answer
13 views

Changing QLabel Text for many QLabels

I am using Python 3 and Qt5. I have designed a QWidget with just over 700 QLabels. I need to change them but I would like to do so without having to write over 700 lines to set the text for all of my ...
0
votes
1answer
13 views

Collecting a range of keys from a dictionary

I am stumped. I have a Timesheet class that holds work days in a dictionary called self.timesheet with dates as the keys and hours, rate as values. I am trying to write a function that can show all ...
0
votes
1answer
13 views

python 3 subprocess error in bytes

Very good, I have a little problem with the output of the thread, I get in unicode or I think and not let me convert it to utf-8, this is the code: import subprocess,sys,time string = b'dir' process ...
0
votes
2answers
22 views

Suppress/ print without b' prefix for bytes in Python 3

Just posting this so I can search for it later, as it always seems to stump me: $ python3.2 Python 3.2 (r32:88445, Oct 20 2012, 14:09:50) [GCC 4.5.2] on linux2 Type "help", "copyright", "credits" or ...
0
votes
1answer
40 views

Using operators on properties in Python

Using Python 3.2.3 at the moment: I am consistently running into a problem when using properties in Python. I don't know if my problem is due to the way properties work in Python (I come from the ...
0
votes
0answers
8 views

importing pygame on python3 on virtualenv cause ImportError

I have python3.3.1 on ubuntu lucid,which I invoke thru virtualenvwrapper ' .I wanted to learn pygame,so I used pip to install it.Before that I installed the sdl and smpeg dev libraries me@ubuntu: ...
0
votes
0answers
15 views

AttributeError: 'NoneType' object has no attribute 'get_width'

Here is one of my function in my program ascii art generator from image in python def getBlobs(self): self.blobList = [] # Null it out. width, height = self.cat.get_width(), ...
0
votes
1answer
22 views

No module named pyopencl

I have successfully installed pyopencl and numpy in ubuntu 11.04. I can run the pyopencl examples using the python default version (in my case it's python2.7) but it fails when I try to run the ...
0
votes
0answers
9 views

select.select() binding in my MUD server when it shouldn't

I'm using the miniboa library for non-blocking telnet-style socket programming. The library includes a demo of a simple chat server. On line 809, in the poll() function, the system uses the ...
0
votes
1answer
14 views

Use numpy in python3 - Ubuntu

I'm trying to use numpy with python3 in Ubuntu 12.04. The command python3 in the terminal returns: Python 3.2.3 (default, Oct 19 2012, 20:13:42) [GCC 4.6.3] on linux2 When I try to import numpy I ...
0
votes
1answer
30 views

sending text output to a window

I've been writing a small text-adventure type game using Python 3.x and Windows 7. I currently just throw all the output to the console like this: print("-------------------------") print ("\nYou ...
-1
votes
1answer
69 views

Python 3 - If statement

When I input look I get the "nothing" printed to the screen. if input("What do you do?") == 'look': print("You see a room of equal length and width, You see foreign symbols on the wall.") else: ...
3
votes
1answer
55 views

Why am I getting this AttributeError?

I'm in the process of changing my KML library from python 2 to 3, and I've hit a snag here. Whenever the KML object is created, with k = KML() for example, I get the following error: AttributeError: ...
0
votes
1answer
66 views

base64.b64encode error

I'm trying to encrypt and decrypt text in python, and I know how to do that - the problem is that I don't want to have to use a set amount of letters like 16 or 32. I want to be able to use as many ...
3
votes
0answers
26 views

python lock with-statement and timeout

I am using a Python 3 sequence like this: lock = threading.Lock() res = lock.acquire(timeout=10) if res: # do something .... lock.release() else: # do something else ... I would prefer ...
1
vote
0answers
18 views

Python3 with PySide randomly crashes due to memory problems

I have a tough problem with PySide and Python3. The program crushes randomly because of memory problems. It doesn't throw an unhandled exception or anything, it's the interpreter that dies due to ...
2
votes
0answers
23 views

How to retrieve filename and lineno attribute of SyntaxError

I have embedded python interpreter in my application. I use it to run python scripts using PyRun_String() API. I can fetch error information using PyErr_Fetch() if an error/exception encounters. This ...
0
votes
1answer
18 views

Pyramid + github + pip: install problems

I need to install a Pyramid project from a private repo from github. The project has a structure something like this: project_name project_name models/ views/ templates/ ...
0
votes
1answer
28 views

Guidence on beginning with packaging

I finished my first Python project, and I have all of the files ready and it's nice and stable. Now I want to move onto creating a binary source file so it'll be installable on linux machines ...
0
votes
1answer
32 views

How To Use Timer With Loop in Python

I want to listen serial port and save it for every 15 seconds. But I can't use time in loop. It gives an error as below. File "serial-reader.py", line 13 timer.start() ^ ...
0
votes
2answers
29 views

single digit addition questions

im trying to build a program that will take an integer n as input and then ask n single-digit addition questions. The numbers to be added should be chosen randomly from the range [0,9](i.e., 0 to 9 ...
0
votes
0answers
14 views

pausing a media stream starts playing from beginning - in Phonon, PySide

I'm facing a strange problem with a simple media player using PySide through Phonon library. The problem is associated with the behaviour of this function: Phonon.MediaObject.pause(). Now I've ...
1
vote
1answer
66 views

Pass a list to a class python [duplicate]

I have this simple class: class revs: def __init__(self, rev, us, accs = []): self.rev = rev self.us = us self.accs = accs And i have this piece of code to asign values ...
0
votes
1answer
25 views

Use codecs to read file with correct encoding: TypeError

I need to read from a file, linewise. Also also need to make sure the encoding is correctly handled. I wrote the following code: #!/bin/bash import codecs filename = "something.x10" f = ...
-2
votes
3answers
67 views

Converting plain text list into array in python program [closed]

The TextFile.txt file contains: 1 one 2 two 3 three 4 four 5 five The python program: file = open ("x.txt", "r") for item in file: x = item.split ('\s') import numpy as np ...
0
votes
2answers
24 views

Python3 has no acces to python2 modules (ubuntu)

Im fairly new to programming and Ubuntu. Yesterday I finally managed to create a dual-boot system, so now I'm running Ubuntu 12.04 LTS. For a school project, I need to work in Python3 with a module ...
0
votes
2answers
94 views

Checking the strength of a password (how to check conditions)

I am trying to create a system that requires you to enter a password. If it is all lower, upper or num then print weak, if it is two of the conditions, then it is med and if all have been met it is ...
1
vote
3answers
30 views

re.sub in Python 3.3

I am trying to change the text string from the form of file1 to file01. I am really new to python and can't figure out what should go in 'repl' location when trying to use a pattern. Can anyone give ...
-1
votes
0answers
62 views

Algorithm required for implementing Python Code [closed]

I have multiple lists of variables. Every list contains the variables corresponding to a single/unique entity. listVar_Entity1 = [var1, var2, var3, var4] listVar_Entity2 = [var5, var6, var7] ...
-3
votes
3answers
50 views

from python 2.7 to 3 [closed]

Can the below code be converted into Python 3? password_str = raw_input('Please enter password to test: ') if len(password_str) < 6: print 'Password:', password_str, 'too short! It must be ...
0
votes
2answers
28 views

Calculate the fraction of wins in craps

I want to write a function that takes a positive integer n as input, simulates n craps games, and returns the fraction of games the player won. the underlying craps simulating code i've written is as ...
0
votes
0answers
15 views

Https Calls Using Python

I am trying to write a python script that reads a short url and returns a long url. I was able to work through and figure out how to get the url information using urllib.request Relavent code is ...
2
votes
3answers
71 views

Simulate game of craps

I'm trying to implement a function craps() that takes no argument, simulates one game of craps, and returns 1 if the player won and 0 if the player lost. Rules of the game: the game starts with the ...
-1
votes
2answers
134 views

How to get molecular weight of a compound in python?

User inputs a formula, for example: C12H2COOH We have to calculate its molecular weight given that C = 12.01, H = 1.008 and O = 16. We were told to be careful of elements with double digits after it ...
0
votes
2answers
22 views

How to get wxPython 2.9.4 running on Windows XP with Python 3.3.2?

Hmm, I'm missing something. I installed wxPython under Python33. When typing 'import wx', I am getting an error message: ImportError: No module named 'wx' Someone knows what this is about? I looked ...
0
votes
1answer
14 views

Download page with javascript executed

I want to download a page with javascript executed using python. QT is one of solutions and here is the code: class Downloader(QApplication): __event = threading.Event() def __init__(self): ...
0
votes
1answer
63 views

Still stumped on ValueError [closed]

about 2 days ago I asked pretty much the same question at Python 3 ValueError deleting from list. I've now modified my code slightly, but the game still seems to have a really rough way of looping the ...
-2
votes
2answers
50 views

obtain list of files in python [closed]

To obtain the list of files, what is wrong with the code below because it does not provide the list. import glob file_list = glob.glob('C:/test/*.txt') out_file = ...
1
vote
3answers
51 views

Slimming down a function [closed]

I've had this program for a while now and it seems tedious to keep at it but I'm running my code against pylint for exercise purposes and I get the error R0912: 69,0:process_ancestors: Too many ...
0
votes
2answers
65 views

How to calculate molecular weight in python

The user will input the chemical formula. For example CO2OHC5H18COO. or something like that. Then the output would be the molecular weight given that C = 12.01, H = 1.008, O = 16. I have this so ...
-3
votes
1answer
56 views

python file I/O and arithmetic calculation [closed]

If I have five text files each of 7 columns by 9 rows as follows: file_one = 'C:/test/1.txt' file_two = 'C:/test/2.txt' . . . file_five = 'C:/test/5.txt' In order to calculate the following ...
0
votes
1answer
22 views

Python - Original data matrix gets modified after for i, v in enumerate(): statement

Please see the code snippet below: import numpy as np # Load the .txt file in myData = np.loadtxt('data.txt') # Extract the time and acceleration columns time = myData[:,0] # Extract the linear ...
0
votes
2answers
54 views

Required positional argument: self

I'm new to Python, and I need some help. I was writing a blackjack program as homework, and I think I may have it working, but whenever I run it, it complains that I have not provided anything for ...
0
votes
1answer
68 views

Convert list to variables in python 3

I am using easygui to get a list of integers from the user. It outputs something like this: fieldValues = [1,2] I want to convert that list to: var1 = 1 var2 = 2
0
votes
0answers
50 views

Varargs in Python? [duplicate]

I'm really not getting this excerpt of code from the free book A Byte Of Python: def total (initial = 5, *numbers, **keywords): count = initial for number in numbers: count += number ...
1
vote
2answers
33 views

Priority of the logical statements NOT AND & OR in python

As far as I know, in C & C++, the priority sequence for NOT AND & OR is NOT>AND>OR. But this doesn't seem to work in a similar way in Python. I tried searching for it in the Python ...
4
votes
2answers
66 views

Python 3 How do I 'declare' an empty `bytes` variable

How do I 'declare' an empty bytes variable in Python 3? I am trying to receive chunks of bytes, and later change that to a utf-8 string. However, I'm not sure how to declare the initial variable that ...

1 2 3 4 5 114