15,175 Topics

Member Avatar for
Member Avatar for krishnasaradhi
Member Avatar for BearofNH
0
183
Member Avatar for blade321

from livewires import * rn = random_between(1,15) rn1 = random_between(1,15) print 'what is', rn , 'times', rn1 , read_number (': answer =') , ' answer is', ( rn * rn1 ) if (read_number (': answer =')) == ( rn * rn1 ): print 'well done' else: print 'wrong' Does anyone …

Member Avatar for sneekula
0
78
Member Avatar for StepIre

Hi Guys, Sorry if this is so stupid but i just cant get it to work!! Basically if the user enters in a number of words: ------------------------------------ input: my name is i want output to be: mynameis ------------------------------------ or ------------------------------------ input: word one word two i want output: wordonewordtwo ------------------------------------ …

Member Avatar for sneekula
0
249
Member Avatar for cam9856

Hi guys, Im new here and new to python but I'm starting to get the hang of it, i began writing an text rpg to test my skills and to have some fun. I was wondering though how to do something. This is what I am trying to do. You …

Member Avatar for jrcagle
0
105
Member Avatar for donnerCobra

Hi everybody :) I have a big problem with embedded Python. I develop a plugin for a C++ application and want to "teach" this app Python Scripting, that users are able to script their own functions. the App = The C++ Application plugin = my plugin I develop for the …

Member Avatar for donnerCobra
0
199
Member Avatar for Acidburn

Hey guys, I've been playing around all morning trying to get this list to be done programmatically, ie work for any number. I've tried the following but it doesn't give the correct result: [ICODE] a = [ "is", "cool"] b = ["Peter", "James", "John"] c = [] for k in …

Member Avatar for woooee
0
79
Member Avatar for Kythas

I'm trying to parse through a large file (544,000+ rows). I'm pulling information from each row and creating a SQL statement with that information, and trying to remove duplicates. Here is my current code: [code=Python] try: fdata = open(vhdat).readlines() except IOError, detail: print "Error opening file. ", detail # Define …

Member Avatar for jice
0
131
Member Avatar for marceta

Hey guys, I'm working on a basic search engine and am really close to completion. I currently have a function that takes a string and compares each word and its synonyms to a webpage. My output at the moment is [("closeness" percentage of terms to webpage, webpage contents,(x,y),(x,y)...(x,y)] I am …

Member Avatar for jrcagle
0
158
Member Avatar for knish

Hi, scheduler.py has a function weekdaytask. It needs five parameters as stated in the scheduler.py. weekdays and timeonday I figured out. You tell me what is name and action, args=None, kw=None ? BRgds, kNish ===================================================== class WeekdayTask(DayTaskRescheduler, Task): """A task that is called at specific days in a week (1-7), …

Member Avatar for jrcagle
0
163
Member Avatar for CoAstroGeek

Python has some nice features for working with paths: [url]http://docs.python.org/lib/module-os.path.html[/url] Does anybody know of any C/C++ functions, techniques or libraries to do something similar? For example, if I'm passed a path on the commandline as such: x = "~/mystuff/../myfile.txt" In python I could get the absolute path as such: os.path.abspath( …

Member Avatar for vijayan121
0
179
Member Avatar for berserker

Hi! I'm new to python and having some troubles comming off java's very strict and formal OO approach. why does the following code snippet below throw this error, when I'm trying to call GenerateMoves() on an object? NameError: global name 'CheckIfRegularMove' is not defined i am trying to call the …

Member Avatar for Ene Uran
0
158
Member Avatar for Stipsoff

I just wanted to ask something. I have this tool that takes some input and gives some output. Nothing new there. But I have some difficulties with doing it from python. Could you please help out? [icode]1. import subprocess 2. if __name__ == "__main__": 3. subprocess.Popen([r"g_gyrate","-f", "trajktorija.trr", "-s", "cpeptide_md.tpr", "-o", …

0
41
Member Avatar for DumbBlonde89

So I took the instructors example. His is to print a report for Tree, Quantity, Unity Cost, Total cost. I need to make a program that has book name, total quantity sold, total sales. I changed the in file names in his example to what my file names are and …

Member Avatar for DumbBlonde89
0
119
Member Avatar for kushyer

I've found that althought my fonts are fine everywhere else, they're blocky when I Tkinter. I have an LCD screen, and I'm using Xubuntu with Gnome. They work fine in WxPython. It seems like Tkinter doesn't allow for sub-pixel rendering or such (at least automatically). Is there some way to …

Member Avatar for kushyer
0
533
Member Avatar for kushyer

I'm using Xubuntu, and I've found that I can't change text control foreground colors in WxPython, on this Linux. They change fine in Windows. They won't change in Xubuntu—it doesn't matter if I use Xfce, Gnome, or KDE; it's the same. It's always black (very problematic when you have a …

Member Avatar for kushyer
0
292
Member Avatar for a1eio

Hi all! Just wondering if it was possible to be able to create a Tkinter window that can handle files being 'dropped' on it. What i want is to be able to drag a file from an explorer window to a widget on my program (probably an Entry widget) and …

Member Avatar for bumsfeld
0
103
Member Avatar for jayverene

HI I am new to .py and I am having a bit of trouble making the rooms and items do what I want any help will be much appreciated. : ) [code=python] print """ TIBBYS LITTLE ADVENTURE EPISODE ONE Tibby the cat wakes up and is hungry, he decides to …

Member Avatar for jayverene
0
84
Member Avatar for Blujacker

Hello I am trying to create my own email client. I have one problem. I cant parse data from email. I am using poplib -> received email looks like this: [code] ('+OK Message follows (1562 bytes).', ['Reply-To: =?iso-8859-2?Q?Jakub=20Voj=E1=E8ek?= <jakohv@seznam.cz>', 'Received: from kubuvpocitac (r3ai164.net.upc.cz [213.220.226.164])', '\tby email-relay2.go.seznam.cz (Seznam SMTPD 1.0.36@12969) with …

0
58
Member Avatar for i_saw_some

Hi, Does anyone know how to perform web queries programmatically from Python with GET and Post requests? I have been trying out my code on this site - [url]http://www.comp.leeds.ac.uk/Perl/Cgi/textareas.html[/url] [code] import urllib, urllib2 link = 'http://www.comp.leeds.ac.uk/Perl/Cgi/textareas.html' urldata = {'review':"test",'method':'GET'} data = urllib.urlencode(urldata) req = urllib2.Request(link, data) response = urllib2.urlopen(req) the_page …

0
62
Member Avatar for Prachu

Hi.. I am totally new to Python and I have no idea as to where to start from in this issue...I want to write a Python script which should automatically create a new website in the IIS manager...how do I get to start with that???It would be great if somebody …

0
67
Member Avatar for G-Do

Hi all, I add a pygame implementation of the Game of Life to the Code Snippets section. I was actually kind of surprised that we didn't already have one in there! The program only has about 60 lines of code, but I buttressed that with a lot of comments and …

Member Avatar for nish88
0
112
Member Avatar for Acidburn

Hey guys, I've got a class defined has the following: [code] class TData(object) : #Overriden constructor def __init__(self, oc, via ): self.oc = oc self.via = via [/code] now in a separate file I'm trying it iterate through that using recursion. [code] def search(critia, searchSpace, value) : print "Calling search …

Member Avatar for Acidburn
0
252
Member Avatar for shadwickman

Hi, I'm using wxPython (the latest version) and was wondering how to get rid of the scrollbar on the wx.TextCtrl (multiline) object. I couldn't find anything with Google or the search on the forums. Thanks!

Member Avatar for kushyer
0
136
Member Avatar for Islandstone

I'm having trouble running my compiled program on other computers. The script is a wxPython GUI app that creates a task bar icon. The script works perfectly on my computer both standard, in the pdb and compiled. But on two other computers it gave two different errors. The first one …

Member Avatar for Islandstone
0
309
Member Avatar for b04e3ian

Hi there, I'm very new to programming, and I have this assignment where I'm supposed to create a 2D game in python. The character in the game is Homer Simpson, and I'm trying to get him to move within the maze thats already been created for me. I believe I …

Member Avatar for vegaseat
0
393
Member Avatar for MrMark

I'm writing a simple web server in python using the BaseHTTPServer library. I can serve text content (ie html pages) with ease, but im running into troubles when i try to serve images. The image gets corrupted in transit and when I manually download the image from the website and …

1
54
Member Avatar for Azurea

Well, I couldn't think of a better word than online for a title, but I meant allowing others on other computers to connect to a server to play a game. Right now, I need help in planning my "online" game of Go. I'm moderately new to servers and clients (I …

Member Avatar for Azurea
0
183
Member Avatar for Peanut85

hello, Does anyone have a script that searches the network and reports on which computers a given directory is found. e.g.: i want to see which computers in my network contain the folder Microsoft Office.

0
53
Member Avatar for pythonuser

Hi , I would need to compare two jpg files using python. Could some one help me, how I can do this Thanks

Member Avatar for bodhankaryogesh
0
270
Member Avatar for Xlphos

Hi I was wondering if anyone can help me. I am trying to create a game in visual python and have come to a complete stop. I need to be able to run many while loops at the same time, i have looked into threading but can't get my head …

Member Avatar for woooee
0
140

The End.