15,181 Topics

Member Avatar for
Member Avatar for Norbert X

Okay I don't get this problem at all: [code=python]import random def chance(number): number = input for each in xrange(number): n = random.randrange(100)+1 return n def extreme(x): z = x + 5 y = z - 3 return z, y #main repeat = 0 while repeat != 2: x = input("Enter …

Member Avatar for jlm699
0
148
Member Avatar for katamole

I'm currently doing a projecteuler problem, which requires finding the sum of all the primes below two million. I have a primitive function which determines whether or not a number is prime. This function is incorporated into the below function to produce a list with all the primes below the …

Member Avatar for MK12
0
164
Member Avatar for breatheasier

Hi I'm wondering how I would go about creating a program that will input data from about 1,000 files containing data such as this: [code] 2.825 1.00697992588 2.875 0.952989176901 2.925 0.91428970229 2.975 0.890110513425 3.025 0.879731596138 3.075 0.959217137445 3.125 1.07391392796 3.175 1.04874407027 3.225 0.857693793906 [/code] I'm wanting to generate an average …

Member Avatar for Gribouillis
0
150
Member Avatar for Norbert X

Is there any way I can get an image to play in python with a function? Like I link the Python Code to the site with the picture on it or link it to my documents? I've tried researching it but I've gotten no results and I thought one of …

Member Avatar for Norbert X
0
119
Member Avatar for scru
Member Avatar for leegeorg07
0
153
Member Avatar for MK12

Ok, so I have a project that I've written in Python(Actually it's not done yet), its the card game "Cheat" that you play in the command prompt with (until I learn wxPython -- GUI for Python) with computer players (or other people with you). I want to distribute it later, …

Member Avatar for MK12
0
170
Member Avatar for mahela007

Hi. I'm a programming newbie. I'm pretty comfortable with most of procedural programming and understand the basics of OOP. Do you think I should try GUI programming? Also I would like some good advice on the best GUI toolkit to use with python and a link to a good tutorial …

Member Avatar for Nick Evan
0
40
Member Avatar for barbosmaw

HI I'm not an expierenced python programmer (yet) I want to display an image on a screen. I already installed PIL 1.1.6, and i am using the Tkinter GUI. I don't know what is missing (or were I went wrong installing the PIL), but this message <see below> is popping …

Member Avatar for barbosmaw
0
344
Member Avatar for Stefano Mtangoo

I have been in some tutorials for socket Module. It is very interesting. I want to know what I need to Know to make simple peer to peer/Client server Chat software but I'm new to Network, so anything that will help me put things together? Thanks Guys :)

Member Avatar for lllllIllIlllI
0
171
Member Avatar for pythononmac

I have written one python script for each test case. Now I want to have another script that runs all the test cases one by one, and output the result of each test case to a file. How should I start?

Member Avatar for lllllIllIlllI
0
116
Member Avatar for katamole

Hi everyone, As a personal project I've decided to write a small script which will take a raw_input film title, then look up the IMDB rating and return the result. As an extra challenge I decided to employ re. Now, this is how far I have got (yes, I am …

Member Avatar for katamole
0
669
Member Avatar for Norbert X

Is there any way to save to progress of a Python Program onto an I.P. Address or Harddrive? Like if you enter '5' into a program that multiplies your number by 3 and save it, your saved number would be 'x' when you reopen the file. I need help! :)

Member Avatar for leegeorg07
0
137
Member Avatar for drone626

I have written code to compute the discriminant of a polynomial f(x) using the determinant of a sylvester matrix which for f(x)=x^5 -110*x^3 +55*x^2 +2310*x +979 looks like [CODE] [[ 1 0 -110 55 2310 979 0 0 0] [ 0 1 0 -110 55 2310 979 0 0] [ …

Member Avatar for Gribouillis
0
104
Member Avatar for Bart6114

Hello, I'm using wxwidgets under linux. When I use the wx.Toolbar I wraps around the largest icons on the toolbar. When I try to set the size of the icons (through SetToolBitmapSize) nothing changes. Any ideas why this doesnt work in my code? [code] self.Toolbar=wx.ToolBar(panel,-1,style=wx.NO_BORDER) self.Toolbar.SetToolBitmapSize((21,21)) self.Toolbar.AddTool(-1,wx.Bitmap('/home/bart/python/icons/open.png')) self.Toolbar.SetToolBitmapSize((28,28)) self.Toolbar.Realize() [/code] …

Member Avatar for Bart6114
0
87
Member Avatar for g_e_young

Hi - This is a simple problem, I'm sure, but I'm stumped. I need to read only one column from a multi-column file. The column is always in the same position, so I've decided to simply isolate the location in the row while reading the data. Here is my code: …

Member Avatar for g_e_young
0
125
Member Avatar for toadzky

I have a HUGE text file (over 60,000 lines) and I'm using python to do regex fixing on the file. I want to wrap any lines over 100 characters, and wrap on a space. I know I can use ".{100}" to find 100 characters but when I do this: [code] …

Member Avatar for scru
0
154
Member Avatar for wccarithers

I am using psycopg2 to read from one database table and insert these into another table. I get a format error when the value I am trying to insert has a space in it. The condensed code looks like: cursor.execute("""INSERT INTO table (column1, column2) VALUES ('start finish','now later')""") I'm a …

Member Avatar for jlm699
0
2K
Member Avatar for vmars

When I try and run xrced.py, I get the following errors in IDLE: Please, what am I doing wrong? Thanks! IDLE 2.6.1 ==== No Subprocess ==== >>> Traceback (most recent call last): File "C:\Python26\wx-2.6-msw-unicode\wx\tools\XRCed\xrced.py", line 23, in <module> from globals import * File "C:\Python26\wx-2.6-msw-unicode\wx\tools\XRCed\globals.py", line 7, in <module> from wxPython.wx …

Member Avatar for vmars
0
436
Member Avatar for esmooov

Hi all, My name is Erik. I'm new here. I was just wondering if anyone could give me any advice on a strange ftp problem I am having. Most ftp connections (through ftplib) if I put the wrong username and password in they raise an error my try except catches …

Member Avatar for BearofNH
0
86
Member Avatar for starzstar

I am tryingto download a file from the server ,I dont know why i m getting the following error localFile = open(localFileName, 'wb') TypeError: coercing to Unicode: need string or buffer, type found Any clues..? Thanks

Member Avatar for jrcagle
0
99
Member Avatar for Sohvkhan

Here is some code I have been working on for an assignment, basically it finds prime numbers in between two variables-in any case, I have been trouble figuring out a way to restart the program based on user input. Basically the user inputs y to restart and n to quit. …

Member Avatar for woooee
0
2K
Member Avatar for Bart6114

Hello, Is there a way to read an imagefile into a binary string? I know I can use [code]open(FILE,"rb")[/code] but this produces something unreadable that looks a bit like hexdata (I'm a newbie here :-). What I am trying to accomplish is to convert it to a string of ones …

Member Avatar for Bart6114
0
14K
Member Avatar for vmars

Greetings; I would like to install Python, wxPython, XRCed, BoaConstructor : I installed Python 3.0.1 : but which version of the others go together with Python 3.0.1? Maybe I should backup with Python, but I don't know. Please Help. Thanks! ...Vern

Member Avatar for vegaseat
0
223
Member Avatar for vmars

Python26 with wxPython, wxWidgets(if need?), XRCed: Where to download compatibles ? Which version goes with which?? Please; I am trying to install Python26 with wxPython, wxWidgets(if need?), XRCed . But am having trouble figuring out what versions go together. Here is my Directory layout so far: Directory of C:\Python26\ DLLs …

Member Avatar for vegaseat
0
86
Member Avatar for sb3700

Hey I am trying to use Python to control a motor over RS232 (serial ports). It is connected to COM3, and the connection settings are correct (baud=9600, etc). I am using pySerial in Python 2.5. My code is: [code=python] import serial, time # the serial port connections - customise as …

Member Avatar for sb3700
0
3K
Member Avatar for starzstar

Hi, I have the following structure of my project [code] Copyproject(main folder) | |_____src(folder) | | | |__Nertworkpackage | | | | | |__Storepackage | | | | |__FtpPackage |__module1.py | |__module2.py |____ tests |__ module3.py [/code] Module1 takes some commandline parameters that will do some operation Like If I …

Member Avatar for starzstar
0
142
Member Avatar for kanodi

Hi guys, I wonder if any of you can help me with my problem.... I am trying to write a script that searches a file that describes a grid of letters, like: [code] wergfdghytr bhgiusuwiee popeldorlfse funwrdtywa [/code] The script uses another file for a word list, where each line …

Member Avatar for kanodi
0
186
Member Avatar for rapid_gezer

I need help with python programing, i finished the first part of my project ans some of the second part, but im really confused about the part where i have to group an entire file into its constituent months and then calaculate the averages. I know how to calculate the …

Member Avatar for woooee
0
360
Member Avatar for LateNiteTippin

Okay, don't laugh. I'm [B]very[/B] new to python. Actually to programming all together. I'm doing an exercise where i have to count the number of a string in a word. Ex: count("is", "Mississippi") would be 2. I tried using string.find and was having no luck. So i tried to go …

Member Avatar for LateNiteTippin
0
123
Member Avatar for ChrisP_Buffalo

Hi folks. I'm getting back into learning Python after a few months off, so I'm still a newbie, hehe. I'm using the free online book Dive Into Python. I ran the first program and it worked just fine, but it returned the output in the opposite order of the one …

Member Avatar for ChrisP_Buffalo
0
159

The End.