Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
1
vote
1answer
473 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
64 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
73 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
19 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
36 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
59 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
20 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
41 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
36 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
240 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 ...
-4
votes
1answer
69 views
Python ValueError: invalid literal for float(): 127.0.0.1 [closed]
I am working on a simple bot for UDP flooding, but it isn't working, all I get when I run is is:
ValueError: invalid literal for float(): 127.0.0.1
Here is a snip of what I think is causing the ...
3
votes
6answers
95 views
How to change value in list using basic operations?
Ok, I made myself the challenge so I can do some programming.
However I faced some problems.
adtprice = {19.99 , 49.99}
chldprice = adtprice * (3/4) - 7.5
And this is Error I got as the result.
...
0
votes
0answers
17 views
python win32com FileSystemObject failed on getting huge folder
My test code is:
#!/usr/bin/env python
import win32com.client
def GetFolderSizeQuick(target_folder):
fso = win32com.client.Dispatch("Scripting.FileSystemObject")
fobj = ...
0
votes
1answer
17 views
yUP on Pythong graphics.py from prof J Zelle
As I am having some problems trying to enter information through the screen window, using graphics.py from Prof. J Zelle, I am reading some additional tutorial on
...
2
votes
2answers
50 views
Long expression crashes SymPy
I'm using 64-bit Python 3.3.1, pylab and 32GB system RAM. This function:
def sqrt2Expansion(limit):
x = Symbol('x')
term = 1+1/x
for _ in range(limit):
term = term.subs({x: ...
1
vote
2answers
37 views
python 2.7 to python 3.2 string formatting error
I have this piece of python code:
args =(12, 45, 7854)
2 result = 123
3 answer = 456
4 print 'Test with data: ', args, ' result: ', result, ' answer: ', answer
Now when I run this with ...
0
votes
0answers
27 views
Cannot installing Pylint on Win 7 machine running Python 3.3.1
setup.py install fails with the following stack trace. Any ideas?
C:\Python33\libs\pylint-0.1.2>python setup.py install
running install
running build
Traceback (most recent call last):
File ...
2
votes
2answers
306 views
Using a python script to backup Windows Registry to file before editing
I am trying to create a script to make an edit to the window's registry. As a fall back, I want to create a back up of the registry and save it in the working directory (or some other directory, but ...
0
votes
0answers
45 views
Py_Initialize: Unable to get the locale encoding in OpenSuse 12.3
I have downloaded Python3.3 and after unzipping it I issued ./configure, make and make altinstall. When I issued python3.3, the following message was shown:
Fatal Python error: Py_Initialize: ...
0
votes
1answer
14 views
How do I do a Py3k pickle dump?
I'm getting the following error via cgitb:
TypeError: must be str, not bytes
args = ('must be str, not bytes',)
with_traceback = <built-in method with_traceback of TypeError ...
0
votes
1answer
35 views
Python 3 - alignment and spacing
i am trying to create a new text file using information from another text file.
i.e.
john doe, 88, uk
mike green, 212, usa
I want it to look like :
name number ...
0
votes
1answer
29 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 ...
0
votes
2answers
45 views
Convert a binary number to human readable text
I am using Python 3.3.
I get my data from a serial port and each byte I get correspond to one whole number. (no number is greater than 255, so no multi-byte numbers).
I have been trying way to long ...
1
vote
1answer
49 views
Why a method can ref an undefined varaible?
I'm new to python, and trying to read bottle.py source code
In the document, we have to
from bottle import route, run
to use bottle.
I try to read the source code where route is just a function ...
3
votes
4answers
1k views
Opposite of Python for … else
The following python code will result in n (14) being printed, as the for loop is completed.
for n in range(15):
if n == 100:
break
else:
print(n)
However, what I want is the ...
6
votes
3answers
4k views
Install NumPy for Python 3.2.3 on OS X 10.7.4
I have been trying for months to get numpy installed for Python 3 but despite copious amounts of Googling and even posting to the numpy mailing list I am still no closer to a solution.
I have managed ...
0
votes
1answer
24 views
Python “builtin_function_or_method” Error
I have a problem writing files - I want to write in bytes, so I made a code:
read_file = open(data,"wb")#data is the path of the file
new_file.write(read_file.read)
read_file.close
It throws me ...
0
votes
0answers
27 views
Tree-based diff (for HTML/XML) in Python 3x
I am trying to find a library that will allow to perform "tree-based" diffs, or diffs that are aware of DOM structures. I have two lists with HTML content that I want to perform differential analysis ...
0
votes
1answer
54 views
a function returns a certain (object or value) based on a rule
Lets suppose i have this function in python:
def get_thing(rule):
if rule == 0:
return 5 #<<<< int
elif rule == 1:
return 'Hello' #<<<<< ...
0
votes
2answers
89 views
Error in python code
I am new at Python. Here is my code which scans number of test cases tc as input and then two integers r and c and calculating my result.
Question: How to remove the error?
#!bin/bash/pytohn
...
0
votes
1answer
47 views
py2exe / cx_Oracle - OCI.dll in the resulting dist
I am trying to generate an executable for a python script that uses cx_Oracle module. The resulting distribution folder has OCI.dll in it which I would like to avoid as the target machine might have a ...
2
votes
2answers
105 views
Speed up the function operating on list of strings
I want to speed up the function from my code, which is called very frequently. This function receives as input list of strings (usually of length 4) and produce the list of strings in which ...
0
votes
3answers
201 views
Command line arguments passing in python
Hi I am new to Python and have currently copied following script:
# filename is printer.py
import sys
for arg in sys.argv:
print arg # the zeroth element is the module name
raw_input("press ...
0
votes
0answers
48 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
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
1answer
123 views
how to run python in komodo
I am completely new to python and wanted to try a code from the tutorial
istrue = 1
if istrue:
print ("be carefull!")
The code itself should be fine, but I can not find any way to execute this ...
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
19 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
39 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
47 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 ...




