Python 3 is the latest version of the Python programming language and was formally released on December 3rd, 2008.
0
votes
1answer
48 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
39 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 ...
0
votes
1answer
51 views
Determining if a Part of a string is in a List
Given the input
Guess='1 5K'
and a list
playable=['AC','QS','5S','5K','KC']
How would I go about determining if the '5K' part of Guess is in playable? Also, if it is in playable, how would I go ...
0
votes
2answers
57 views
Installing distribute in Python 3.3 Ubuntu
I am running Ubuntu 12.04 and I have a distribution of Python 3.3.1 installed. I want to install some packages, so I first sought to install distribute-0.6.38. During the "install" phase, I am ...
1
vote
2answers
35 views
Proper usage of Python 3 ftp class
As a python newbie still learning the language, I struggled for a couple of days trying to do a simple ASCII file transfer (STOR/PUT) using the ftp class in ftplib (running Python 3.3).
After using ...
2
votes
1answer
67 views
C Code for Python's property function?
I am really curious as to how Python's interpreter makes an attribute x out of a method x through x=property(x). If I could take a look at the C code, I would feel much better.
5
votes
1answer
54 views
The difference between bash and python pipes
I have the following three python scripts:
parent1.py
import subprocess, os, sys
relpath = os.path.dirname(sys.argv[0])
path = os.path.abspath(relpath)
child = subprocess.Popen([os.path.join(path, ...
-1
votes
2answers
61 views
While Loop Complications
I'm writing a python program based on the Accordion style of solitaire. I've written the above code and have been playing around with it for the last couple hours but I can't seem to make the loop run ...
0
votes
0answers
22 views
Google API SSL error using customsearch from Python3
I am unable to query google from Python3 client in Windows.
Here is the script
import urllib.request, urllib.parse, urllib.error, re, os, sys
import json
searchterm="hello"
prefix = ...
-4
votes
1answer
71 views
Craps game simulation python? create a program in python based on the information below Craps game above and include the given requirements 1,2,3,4
Each round has two phases: "come-out" and "point". To start a round, the shooter makes one or more "come-out" rolls. A come-out roll of 2, 3 or 12 loses and is called "craps". Anyone betting on the ...
-3
votes
2answers
51 views
error<0x275b990> - what does this mean
I have this function, but i'm not familiar with the error or how to correct it.
def intify(file1):
numbers=range(0,10)
strnum=[]
for x in numbers:
strnum.append(str(x))
...
0
votes
2answers
65 views
Reading a binary file on backwards using python
I try to read a file backwards (from end to begin). The example below does this, but I would like to ask the community - is there a more elegant solution to my question?
import os, binascii
CHUNK = ...
0
votes
1answer
40 views
Which Django asset manager/compressor is Python 3 compatible?
I finally want to migrate a Django project to Python 3.3 but have some issues with django-compressor, because it is not Python 3 compatible (yet).
Out of the asset managers listed on ...
0
votes
3answers
72 views
logic in if statement flow in Python
def find_acronym():
# if search term in database returns acronym and expansion
for abbr, text in acronyms.items():
if abbr == search_analyte.get():
...
0
votes
0answers
13 views
Decode error in python3 in Debian (UnicodeEncodeError: 'ascii' codec can't encode characters in position)
I have problem with decode in Python3 script. I know that this problem has been discused but solutions I have found don't help.
Problem: I have xml in 'Unicode string' type (get from doc.toxml()) and ...
0
votes
1answer
64 views
When I run my program my if statements never return anything
I was trying to make a simple Ideal Gases calculator but for some reason I cannot seem to get any of my if statements to return any values.
def Ideal():
p = input("Pressure:")
v = ...
0
votes
2answers
25 views
Python 3.3 Console NameError
I'm getting a weird error occurring. I'm trying to run a text based game through the python console window, the code runs very well in IDLE but when I run in console it executes the step to ask for a ...
0
votes
1answer
55 views
ECG filter in python
I'm new to Python, I hope not to obvious questions, need some urgent help.
I have a file with the signal, I have to answer the questions:
a) present a statistical description of the original signal ...
1
vote
3answers
39 views
remember password functionality in python
basically, I want to have a login box, and the option to remember the password next time you log in. I know there are encryption modules out there, but they require a password to work in the first ...
1
vote
1answer
14 views
List of combinations not directly accessible
When I create a list by calling the list function on an iterator that was itself produced with the itertools.combinations function, sometimes I get an error like the following:
*** Error in argument: ...
0
votes
1answer
38 views
Django import error - bad argument to internal function
I'm making a basic time-card program. I'm getting an error while importing views from urls.py. The other files in the app (models, forms, etc) can be imported, but any call to import views returns an ...
3
votes
2answers
74 views
Python memory leak in big data structes (lists, dicts) — what could be the reason?
The code is extremely simple. It shouldn't have any leaks since all is done inside the function. And nothing is returned.
I have a function which goes over all lines in a file (~20 MiB) and puts them ...
3
votes
3answers
54 views
print progress counter of python in DOS
test_count = 0
while test_count <= 100:
print test_count
test_count +=1
Currently this counter is printing on next line but I am looking for way to overwrite it on "0".
0
votes
2answers
58 views
Using Monte Carlo method to find a specific probability of a certain dice output in Python 3.2
I'm in a statistics class and we are constantly being given "dice problems" with various constrains. This is a probability problem, where I need to evaluate the probability of an event by using the ...
0
votes
2answers
44 views
How to find specific elements in XML using ElementTree
I'm trying to parse XML string which I get from youtube video feeds, using Python 3.3.1. Here is the code:
import re
import sys
import urllib.request
import urllib.parse
import xml.etree.ElementTree ...
0
votes
0answers
22 views
python and E01 files
Are there any modules for python for accessing the content of Expert Witness/EnCase E01 file?
E01 file is a forensic image of a harddrive, thumdrive etc. They are created with the help of programs ...
0
votes
2answers
31 views
Remember variables after code execution
Is it possible to run python code in Eclipse (PyDev) and use variables computed in previously executed code (similar to using console and interpret code in real time as we enter it)?
Details: I want ...
1
vote
3answers
54 views
Breaking down a function into more manageable segments
I've got a program right now that I'm trying to break down into smaller, more manageable pieces for exercise purposes. The problem is though, I'm experiencing a bit of difficulty in following the ...
0
votes
1answer
40 views
Determining if a list of numbers is in heap order, Python 3.2
I just discovered heap (in real life and in Python) and now I'm trying to determine if a certain list of random numbers is in heap order.
Problem is I'm not sure myself if I actually understand "heap" ...
1
vote
1answer
35 views
keyboard interrupt with with python gtk?
So just like the question says, I'm trying to let keyboard interrupts happens while Gtk.main() is in progress, however, it just doesn't seem to notice that the keyboard interrupt happens until after ...
0
votes
6answers
84 views
Finding all palindromic numbers within a range
I need some help with below:
write a function (main) which will ask the user to enter a starting and ending number range (inclusive). Count through the numbers using a while loop. Add the number ...
0
votes
1answer
32 views
Black Jack with Classes
I am trying to create a black jack game that uses classes in order to run. I believe I have successfully made a class that is for the card
class Card(object):
def __init__(self,suit,number):
...
4
votes
1answer
78 views
Is the file closed? [duplicate]
I see regularly this kind of code:
filecontent = open(thefilename).read()
I wonder what becomes the file object created by open in this situation: is it implicitly closed, or does it stay open ...
0
votes
1answer
30 views
Why sfml does not play the file inside a function in this python code?
from tkinter import *
import sfml
window = Tk()
window.minsize( 640, 480 )
def sonido():
file = sfml.Music.from_file('poco.ogg')
file.play()
test = Button ( window, text = 'Sound ...
0
votes
1answer
27 views
SyntaxError: unexpected character after line continuation character using .format(\*\*vars())
I am getting started with my first cherrypy app. I am using the example from the docs http://docs.cherrypy.org/dev/progguide/REST.html
import cherrypy
class Resource(object):
def ...
0
votes
0answers
18 views
How can I implement QThread into my python code
I have looked up the references and can not seem to get it to work correctly. Have been stuck in the same spot for 2 weeks. I would like to add threading to my code so I can dynamically update a ...
0
votes
1answer
50 views
How to get number of objects in a pickle?
Is there a short way to get number of objects in pickled file - shorter than writing a function that opens the file, keeps calling pickle.load method and updating num_of_objs by 1 until it catches ...
2
votes
1answer
44 views
splitting up strings to x amount of characters
I am trying to make a decrypter that decrypts code from the encrypter I made. I am getting this type error when I run the code though
getcrypt = ...
-3
votes
0answers
20 views
Take numbers as input and display a sequence? [closed]
How would I make a python program to ask for a starting number, ending number, and a unit to count by and have it display the answer
I need to make a program for a school project that does the above. ...
-1
votes
0answers
35 views
Socket issues, no sending or receiving of packets over multiple pc's
It only recieves or sends packets when we move the pygame window or exit the pygame window... need help trying to figure out why... Not all of the code is ours and our code works properly when running ...
0
votes
1answer
72 views
Python3 Print First File Line
How can I make Python3 print the first line of a file once I have loaded the file contents? In other words, what is Python3's equivalent to AWK's awk "NR==1"?
1
vote
2answers
69 views
Python Dictionary from text file
Hello I have a file text that holds a sequence like this:
TCA:DateIn,TimeIn,Content,Quantity,Company,TankerName,Country,PortFrom
26/02/2013,15:00,Natural gas,30000,Linkers, Blue Ice, China,Shanghai
...
0
votes
1answer
32 views
How to update Ttk.Progressbar in Python?
I have a siplme GUI that performs a few time-consuming operations. I would like to make a progressbar that would update after each of this operations. However it seems impossible to be done.
No ...






