Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
0
votes
1answer
20 views
Python 3 : Global name 'inSet' is not defined
I've just began learning Python 3 about 2 weeks ago. I decided to make a basic text game However, I've run into a bug in the code that I can't seem to fix, and that I can't find anywhere else. When I ...
0
votes
0answers
40 views
Diagonal lines of squares in grids
I have a python grid class in which I am trying to create a method to get the diagonal line of tiles that a certain tile belongs to. I have succeeded in doing this for going down from left to right in ...
0
votes
1answer
23 views
How do i reformat a text file to a new one with a given line width
How do I reformat a text file to a new one with a given line width?
For example:
Sample File input.txt:
Your program should store a single row of the triangle and calculate each subsequent row by ...
0
votes
1answer
16 views
Python + SQLite: Bind list of tuples
I have an insert statement with only one parameter
INSERT OR IGNORE INTO sample (descr) VALUES (?);
And I have a list of tuples
[(a,b), (c,d)]
Now I am using
cur.executemany(query, ...
0
votes
0answers
31 views
tkinter Progressbar update during while loop [duplicate]
How do you update a progressbar during a while loop?
#ProgressBar
root = Tk()
root.withdraw()
progressbar = ttk.Progressbar(root, length=100)
progressbar.grid()
root.after(100, root.deiconify)
...
0
votes
1answer
31 views
TypeError when using Matplotlib's strpdate2num with Python 3.2
In my current project I want to read some experimental data from a text file into Python using the following code:
import numpy as np
from matplotlib.dates import strpdate2num
data = ...
-1
votes
2answers
40 views
SyntaxError: invalid syntax (Python 3.2) [closed]
I have a function that will insert spaces in a tuple of strings so that all strings are equal in len. I also have a function that takes to tuples of strings and some formating info and combinde them ...
1
vote
1answer
34 views
1:1 mapping of variables to a dict with the names as keys
I have a very large amount of variables that I want to return as a dict with their variable names as keys. For example:
return {
"foo": foo,
"bar": bar,
"baz": baz,
}
This is fine for ...
0
votes
1answer
44 views
How to not issue a new line in Python 3 when entering text with input()
I'm making a basic utility in Python 3 where the user inputs a command and gets feedback printed out into the console. When entering data using the input() or sys.stdin.readline() functions this is ...
0
votes
1answer
66 views
How to get input from a user in Python 3 without being cut off when printing?
I am making a basic utility in Python 3 running on Windows with which the user inputs commands and at any given time may receive a printed message. The issue is, when using the input() function if a ...
0
votes
1answer
28 views
Nested layouts get broken, not on their own
I have a simple window which I would like to display a button and a label horizontally in a QHboxLayout then a QGroupBox with some QRadioButton displayed vertically in a QVBoxLayout. I tried to put ...
-2
votes
0answers
72 views
TSP by Brute Force on Python
I'm a programmer student; and I'm trying to solve the Traveling Salesman Problem (TSP) by brute force, implementing it with Python; but I can't solve it. I tried something but I don't know well how to ...
0
votes
2answers
43 views
Flattening nested list of strings into a single list of ints
I am being very dull this afternoon. How do I convert
['1,9', '3,10', '5,8', '8,11', '2,7', '4,5', '2,6']
into
[1,9,3,10,5,8,8,11,2,7,4,5,2,6]
?
1
vote
1answer
20 views
tkinter messagebox link to notebook page
referwork = ttk.Notebook(root, style =".TNotebook")
f1 = ttk.Frame(referwork)
f2 = ttk.Frame(referwork)
referwork.add(f1, text="Search", padding = 1)
referwork.add(f2, text="Add/Delete", padding = 1)
...
0
votes
1answer
48 views
Receiving Import Error: No Module named ***, but has __init__.py
I understand that this question has been asked several times but after reading them, and making the suggested fixes, I'm still stumped.
My project structure is as follows:
Project
|
src
...
-1
votes
0answers
20 views
new to python birthday probability need help starting
accumulate a probability
initialize number of persons asked to 1
initialize probability to 1.0
while probability not there yet
update to next person number
# accumulate next probability
...
1
vote
1answer
53 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
2answers
22 views
How to load json data from serialised file and process them in python 3?
I am trying to create a program in python3 (Mac OS X) and tkinter. It takes an incremental id, the datetime.now and a third string as variables. For example,
a window opens displaying : id / date ...
2
votes
1answer
34 views
Getting the same Unicode string length in both Python 2 and 3?
Uhh, Python 2 / 3 is so frustrating... Consider this example, test.py:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
if sys.version_info[0] < 3:
text_type = unicode
binary_type = ...
0
votes
1answer
25 views
How can I remove tuples containing a specific value from a list?
My list of tuples is:
[('Huggies', 0.39), ('Snugglers', 0.26), ('Pie', 0.23), ('Baby Love', 0.23)]
and i need to remove all tuples that do not contain 0.23.
How can i do this?
0
votes
2answers
48 views
In Python, what is the easiest way to find the smallest value in a list which contains both strings and floats?
My code asks for a list of products or loads them from a file. Then I need to find which of the values is smallest, and if there are equally small elements, choose a random one. however, I still need ...
2
votes
1answer
43 views
Placing support functions into the main
I'm currently working through an exercise covering definition functions and I've hit a snag in regards to placing all my support functions into the main.
Here is how the code originally looked..
fn ...
0
votes
1answer
39 views
In Python, how can I search a list of elements for a value then also take the element before it?
I have a list of elements created by:
if x > 2:
pricePerUnit.append(name)
pricePerUnit.append(price/quantity)
bestValue = list.count(min(pricePerUnit))
How could I take ...
0
votes
2answers
21 views
in Python, how can i write from a text file with each word being a different element?
i need to use a file in the format:
product1,33,84
product2,18.50,72
product3,22,96
and need to write the elements to a list in the format:
['product1', '33', '84', 'product2', '18.50', '72', ...
1
vote
1answer
52 views
Progressbar (ttk.Progressbar) with python in tkinter not showing
Using the ttk.Progressbar in Python (in a tkinter GUI), I'm trying to have a progressbar appear when I press a button. Clicking the "Analyse" button on the gui calls the function analyze in the ...
0
votes
1answer
35 views
Link Fetching List
so I've asked many questions regarding this one subject, and I'm sorry. But this is it.
So I have this code:
import urllib
import urllib.request
from bs4 import BeautifulSoup
import sys
from ...
0
votes
3answers
76 views
Trouble with method inside of class in python
We are having trouble getting the gettot() method to work in side of our game class. When it is called inside of our game as a whole it comes back with an error saying that we dont have the correct ...
0
votes
1answer
26 views
How do I print these return values from function in Python 3?
I have a homework assignment for raquetball simulation. I'm trying to figure out how to expand the program to account for shutouts and return the number for each player. I added a loop into the ...
0
votes
2answers
48 views
Trouble with printing out of Classes in Python
We are supposed to use the code below to print out the parameters listed in it, currently however we are unable to do so and are using a round about method. This is supposed to print out things ...
0
votes
1answer
43 views
Accessing QT combo and textbox values
I'm using Python 3 and QT4 with pyqt. I've been unable to access data from qcomboboxes and qplaintextedits.
I've read the documentation here:
http://qt-project.org/doc/qt-4.8/qcombobox.html
...
-3
votes
1answer
86 views
Python - How is it used? [closed]
This may seem like a stupid question, but how is Python actually used? I'm new to the language and I'm wanting to learn how to use it in building web applications, but none of the tutorials I've seen ...
2
votes
2answers
41 views
Trying to understand optional, list and named arguments in Python
I'm a beginner at Python, trying to understand function arguments and their types and orders.
I tried to experiment a little with the different kinds of argument and here's my experiment
def main():
...
0
votes
2answers
34 views
Any reason not to just import CGI in Python?
Any reason to try and replace it with something else? I'm a beginner to python, but have encountered problems with C and importing CGI. List of instance where import cgi would not be the best option ...
0
votes
1answer
25 views
Filedialogue error in Tkinter
Question about Tkinter :
I want to basically create a browse along with a text display which will display the file that I pick from the browse button. Following is my code :
Edit 1.
button_opt = ...
0
votes
2answers
59 views
Normalizing unicode
Is there a standard way, in Python, to "normalize" - so to speak - a unicode string, so that it only comprehends the simplest unicode entities that can be used to represent it ?
I mean, something ...
0
votes
1answer
41 views
How should negative time work?
I'm trying to create a Time -class which can handle times of format hh:mm:ss.
This is what I have:
class Time(object):
def __init__(self, h=0, m=0, s=0):
#private
self.__hours = ...
2
votes
0answers
75 views
Python dictionary editing entries
def replace_acronym(): # function not yet implemented
#FIND
for abbr, text in acronyms.items():
if abbr == acronym_edit.get():
textadd.insert(0,text)
#DELETE
name ...
0
votes
0answers
22 views
Get Python release version for ARM using Visual Studio 2012
I'm able to compile a Python 2.6.8 version for ARM systems using VS2012, but I get everything (all compiled files and exe files) on the same directory (for me: ARM/Release).
My project:
Get the ...
0
votes
1answer
22 views
BioPython Pubmed Eutils url?
I'm trying to run some queries against Pubmed's Eutils service. If I run them on the website I get a certain number of records returned, in this case 13126 (link to pubmed).
A while ago I bodged ...
0
votes
1answer
74 views
How to send bytes using python (example please!)
I'm trying to create a simple thingermajigger in python at the moment just to test out sending UDP packets over a socket. I think that I'm getting my script perfectly fine other than using the ...
0
votes
2answers
41 views
Updating default arguments in Python across calls
In the following function L stores the values during every call.
For example, if I call f(1), L is now [1]. When I call it again the previous L is appended with the new value. So now L is [1,1].
def ...
0
votes
1answer
47 views
Error when importing numba in Python 3
I have just installed numba in my Ubuntu 13.04 via pip-3.3, as an alternative to numpy and cython to make calculations, but every time i try to import it in Python i get a "Segmentation fault (core ...
-1
votes
4answers
62 views
How the program has control with the break statement [closed]
Could anybody explain this program and output of this? I am having doubt at if statement. I'm not able to understand how break statement works in this:
for n in range(2, 10):
for x in range(2, ...
1
vote
2answers
38 views
Returning error string from a function in python
I have a class function in Python that either returns a success or a failure, but in case of a failure I want it to send a specific error string back. I have 3 approaches in mind:
Pass in an ...
0
votes
0answers
16 views
Matplotlib: contourf3d_demo2 example doesn't work with python3.3
The current docs for the matplotlib mplot3d contourf function contain two examples:
mplot3d tutorial - Matplotlib 1.2.1 documentation
One of them, contourf3d_demo2.py works with python v2.7.3, but ...
0
votes
2answers
38 views
continued trouble with classes in python 3.2
In the below code, it is working at first but when I want it to tell me what card number the dealer has it is returning some sort encrypted stuff that I don't understand.
[<__main__.Card object ...
0
votes
3answers
51 views
trouble with classes in python
I am getting an error that reads this and no matter what I do I am unable to get rid of this code.
Traceback (most recent call last):
File "C:\Users\Ian\Desktop\BlackJack.py", line 226, in ...
2
votes
2answers
94 views
Python converting string to tuple without splitting characters
I am striving to convert a string to a tuple without splitting the characters of the string in the process. Can somebody suggest an easy method to do this. Need a one liner.
Fails
a = 'Quattro ...
0
votes
3answers
39 views
Counting number of columns in text file with Python
I have two text files composed of spaced-separated columns. These are excerpts of these two files:
FileA
1 1742.420 -0.410 20.1530 0.4190 1.7080 0.5940
2 1872.060 0.070 21.4710 ...
1
vote
1answer
49 views
Export libraries from python 2 from python 3
I am working with python 3. My problem is that each time I install a package, it installs it for python2.
For example, I want to use mapnik, so I've just installed it with homebrew, and then it ...



