15,190 Topics

Member Avatar for
Member Avatar for jib

[B]############################### [COLOR="Green"]# PROLOG SECTION # hangman.py # Program to play the traditional game of hangman. # The computer picks a word and the player # has to guess it before he has made 7 wrong # guesses of letters in the word. # Each time the user makes an incorrect …

Member Avatar for jib
0
899
Member Avatar for sandorlev

Hello! I'm planning to make an online program, actually it would only be a login system with GUI and a chat window after login. The client program would recieve some data from the server (like names, ages, etc). I don't want to use C++ for sockets, I want to use …

Member Avatar for dusktreader
0
239
Member Avatar for cableguy31

I'm trying to write a script that will take as input a network and subnet mask and then ping each host. I can get it to work fine for any class C address that only increments that last octet. However, I'm kind of stuck on how can I work through …

Member Avatar for TrustyTony
0
102
Member Avatar for ChargrO

Hello, i was just wondering how i could make these buttons appear on the screen in the same position, but so the code is simpler and easy to use. [CODE] ## Screen design draft for major project ## Filename: majorProjectDesignDraft20090222.pyw ## import os from Tkinter import * import tkFileDialog class …

Member Avatar for sandorlev
0
242
Member Avatar for xcristi

Hello, I have an application with a db update dialog: a static text and two buttons. One of the button is bind with the [B]do_update[/B] method which uses multiprocessing module to run a long task in the background. To communicate from there, I use Publisher() class. A receiver for that …

Member Avatar for xcristi
1
1K
Member Avatar for haydensewell

from this starting point: matrix = [[0 for x in range(5)] for y in range(3)] I need to make this: |0 0 0 0 0| |0 0 0 0 0| |0 0 0 0 0| +-+-+-+-+-+ 0 1 2 3 4 I have been trying .append and .replace to try …

Member Avatar for vegaseat
0
2K
Member Avatar for marco64

Hello, I would like to know if you know any framework/classes for systems administration in windows/linux environment. Thanks for you replies! Bye, Marco.

0
142
Member Avatar for stabzagg

Hey there, I have written some code to draw a grid on a canvas but the code is far to long.. so I was wondering what the most efficient way to write my code would be. [CODE] self._canvas = Canvas(self, width = 450, height = 450, bg ='white', highlightthickness = …

Member Avatar for morgadao
0
5K
Member Avatar for niehaoma

Newbie. Sorry for lame question. I want to use each bit in an int (binary number) as a boolean. In essence (this is c"ish" pseudocode): [CODE] bitVal = 0x01F; // 32-bit value for(i=0; i <LIST_SIZE; i++){ if(bitVal[i] == 1) printf(List[i]) }[/CODE] So, for Python, I just need to know how …

Member Avatar for TrustyTony
0
122
Member Avatar for TrustyTony

This code was in discussion of getting numeric input to Python. This function returns the zero-stripped, normalized string form the input string if it is correct, False truth value otherwise (it can not be mixed with number 0 as accepted '0' are returned as string '0'). If string passes the …

Member Avatar for TrustyTony
0
1K
Member Avatar for Patagonikus

I need to put a digital (or analogic) clock in a pygtk window with a exit button. I was looking a example with Tkinter but I do not know how to integrate in a pygtk window [ICODE] from Tkinter import * import time root = Tk() time1 = '' clock …

Member Avatar for Patagonikus
0
527
Member Avatar for Etinnet

Hey all, I have a conceptual question. I have a 2-dimensional grid with on/off (0/1) values for every cell it. What I would like to do is to calculate the distance covered over cells with a value 0 and the distance covered over cells with a value of 1 when …

Member Avatar for TrustyTony
0
272
Member Avatar for vlady

Hello, I am learning dictionaries and I need help. Here is a script and the task is to modify print_hist to print the keys and their values in alphabetical order. I imagine that the result should be like this: d 2 o 1 r 1 v 1 thing is I …

Member Avatar for woooee
0
140
Member Avatar for pew2

I am working on a project for my programming class in which I need to use a Tracker class. The guidelines given to us are as follows: class Tracker: def __init__(self,window,objToTrack): # window is a graphWin and objToTrack is an object whose # position is to be shown in the …

Member Avatar for sergb
0
133
Member Avatar for jib

• shooter_clicked(x,y): This function is called when the shooter turtle is clicked on the screen. If the bullet not already moving, this function sets a global flag to cause the bullet to start moving upward. • Set the window dimensions and title. Call setup() to draw the window. • Set …

1
5K
Member Avatar for Robbert

Hi, I need some help on how I could add the following pie chart to a wxPanel. I just can't seem to get it to work without the pylab interface. [CODE]import wx from pylab import * class MyFrame(wx.Frame): """ Pie Chart Frame """ def __init__(self): wx.Frame.__init__(self,None,-1) self.panel=wx.Panel(self,-1) """ Start Pie …

Member Avatar for Robbert
0
193
Member Avatar for bunkus

Hi, I am trying to install Ming for Python 2.6 I have downloaded the windows setup from [url]http://sourceforge.net/projects/ming/files/Releases/Ming%200.4.3/ming-0.4.3.zip/download[/url] but I am running into problems since if I try to run the setup.py inside the directory py_ext like setup2.py build --compiler=mingw32 I get the following error message: running build running build_py …

Member Avatar for bunkus
0
216
Member Avatar for dbphydb

Hi, I am a tester and new to python. The code in bold should execute only if the webpage has the text 'BUILD COMPLETE'. This text is between the <th> tag and this is found using DataParser class. [CODE] URL = "http://11.12.13.27:8080/cruisecontrol" from urllib2 import urlopen from HTMLParser import HTMLParser …

Member Avatar for dbphydb
0
749
Member Avatar for dbphydb

Hi, After much research and help from forums, i have the following. Using HTMLParser to parse thru html pages and then finally reaching a webpage where i have to check all the checkboxes and then click the 'Deploy' button. Used ClientForm to do this. But i am getting some HTTP …

Member Avatar for dbphydb
0
173
Member Avatar for Kruptein

Well like the title says, everything was alined fine, untill I added the Shell, it's the shell I want to resize, but if I pass wx.Size(100,100) of self.console.SetSize((100,100)), it doesn't work :f What am I doing wrong? [code=python]class DEDITOR(wx.Frame): def __init__(self, *args, **kwds): # begin wxGlade: DEDITOR.__init__ kwds["style"] = wx.DEFAULT_FRAME_STYLE …

0
69
Member Avatar for CobRalf

Hello everybody! a few days ago, i read this post in the [URL="http://www.daniweb.com/forums/thread257510.html"]Advanced and Intermediate Projects[/URL]-Thread: [QUOTE]Create an operating system prototype/emulator in Python. You might research into various operating systems to get an idea for what to implement. Things you can implement: A login. A shell system. A explorer system …

Member Avatar for CobRalf
0
761
Member Avatar for albruno

Is anyone having success with applying CUDA or multi-GPU processing with python? if so, could someone share a simple sample?

Member Avatar for 0x69
0
136
Member Avatar for alabandit

i'm stumped... i get strange results from string[10:] to get the last 10 characters from a string? the code supposed to rename a batch of file sequentially and the number of numbers needs to be consistent eg. 00001 - 99999 thanks for the help [CODE]import os x=0 for file in …

Member Avatar for alabandit
0
256
Member Avatar for MJFiggs

I have just started Python recently and for some reason, I cannot import anything on my computer. I can do it on the computer at my school, but not my laptop. This is the message I received when I tried to import the program "cTurtle" [CODE]IDLE 2.6.1 >>> import cTurtle …

Member Avatar for ultimatebuster
0
161
Member Avatar for JohanY

Hi! I'm writing a software for solving and displaying plane stress problems using hte finite elt method. In this software the main window is (logicaly enough) called 'mainWindow' while the geometry is changed in another frame opened from the menu in 'mainWindow' called 'NodeWindow', below is just a piece of …

0
81
Member Avatar for TitusPE

Hi all I have a txt file. It has a maximum of 24 lines. E.g. Line 1 Line 2 Line 3 Line 4 Line 5 Line 6 ... Line 24 I would like to delete lines 2, 4, 6 ... 24. All the even numbered lines this is the code …

Member Avatar for TrustyTony
0
8K
Member Avatar for Kacoo

this is my code i was wondering if somone could help me find out how to put text in the new window created at the red line [CODE]from Tkinter import * import Tkinter as tk class Application(Frame): def __init__(self, master=None): Frame.__init__(self, master) self.grid() self.createsMenuButton() self.createsOptionsButton() self.createsHelpButton() self.createsUsernameWidget() self.createsUsernameEntryButton() self.createsLoginButton() #### …

Member Avatar for jcao219
0
177
Member Avatar for Aeronobe

I'm trying to find the linenumbers of a webdocument i load using urllib2. I'm trying to do this like this: [ICODE] document = urllib2.urlopen(url,'r') page = document.read() for index, line in enumerate(page): print index [/ICODE] This however, prints out the index of every 'character' instead of every 'line'. How could …

Member Avatar for Aeronobe
0
143
Member Avatar for kur3k

hey gues I search modules for console windows ( when program run ), i search few hours but for windows only find module Console .. I search module like for Urwid but for Windows, not Unix ( sorry, my english is not good )

Member Avatar for kur3k
0
50
Member Avatar for Kruptein

somehow this does not work: [icode]self.list_box_1.SetForegroundColour(5,"red")[/icode] SetForegroundColour is though listed in [url="http://www.wxpython.org/docs/api/wx.ListBox-class.html"]the api reference[/url]

Member Avatar for HiHe
0
164

The End.