14,946 Topics

Member Avatar for
Member Avatar for chris99

I really don't think that text adventures, even simple ones are within my grasp. How would you do that anyway, write a seperate Data file for each room or something? They seem very complicated, even the one in the Programs for Beginners thread. Bear in mind, the tutorial missed a …

Member Avatar for bumsfeld
0
127
Member Avatar for bennyzil

I've encountered the following problem: Our program has two parts - the algorithm which is written in python (with numeric), and the GUI written in java. We want them to be able to work together - that means that the java part could ask the python for a calculation and …

Member Avatar for mostafadotnet
0
143
Member Avatar for prinitor

Hi,:p Im totally unfamiliar with python - and need a little help. Im trying to add one command to superkaramba theme - it must be done in python file I know how that command looks when given from command line (bash) command is: [B]dcop knotify default notify eventname appname 'You …

Member Avatar for prinitor
0
115
Member Avatar for chris99

Can you do these in the IDLE converter, or is it not powerfull enough, as I don't want to download 2 more programs just to expand my Python knowledge. Can I make graphics in the IDLE interpreter, and if so, is there a tutorial to help?

Member Avatar for mostafadotnet
0
127
Member Avatar for chris99

It is very annoying, I have typed it as best I can, but option 2 doesn't work. Option 1 is to take the test in Test.py, option 9 is to quit, and option 2 is supposed to print all the questions and answers. This is the code: [CODE]true = 1 …

Member Avatar for Ene Uran
0
281
Member Avatar for chris99

Need help. How do I fix this code? [CODE]max_points = [25,25,50,25,100] assignments = ["hw ch 1","hw ch 2","quiz ","hw ch 3","test"] students = {"#Max":max_points} def print_menu(): print "1. Add student" print "2. Remove student" print "3. Print grades" print "4. Record grade" print "5. Save Students" print "6. Load Students" …

Member Avatar for Ene Uran
0
93
Member Avatar for jrcagle

A friend of mine just introduced me to the Eclipse IDE, which may or may not end up replacing IDLE for me. Anyway, one of the features of Eclipse is error warnings as the code is *displayed*, rather than waiting for errors to pop up at runtime. This code got …

Member Avatar for Ene Uran
0
113
Member Avatar for Blujacker

I have a problem: How to insert raise in Text()? for example i have file: [code] #my_program.py a=ddd [/code] and other file: [code] #my_file.py: from Tkinter import* root=Tk() text=Text() text.pack() execfile('my_program.py') #text.insert(END,raise) mainloop() [/code] In file my_program is Error. How to insert raise of this error in Text? thanks

Member Avatar for Ene Uran
0
135
Member Avatar for katharnakh

I have a dictionary defined say D, I also have initialized it. When I say len(D), some time it gives me correct answer, but some times it throws me error saying [I]UnboundLocalError: local variable 'len' referenced before assignment[/I] can anybody tell me why is this error. Am I wrong some …

Member Avatar for vegaseat
0
2K
Member Avatar for msvinaykumar

What does connection.conv() means? I know that connection.conv() - set type conversion options between MySQL and Python but How to implement this in python Vinay

Member Avatar for mostafadotnet
0
69
Member Avatar for Ene Uran

What is a closure? I keep reading this word in programming, but never got a good explanation.

Member Avatar for Ene Uran
0
278
Member Avatar for biganimal

I have tweaked this program but not sure additions I made are correct and also need some help in making some additions. I want to make sure the program can track the dates of all the types of transactions within the program also having a loop involved so someon can …

Member Avatar for biganimal
0
76
Member Avatar for jrcagle

I'm befuddled by something. Here is transcript of the interactive session: [code] >>> range(9).remove(3) >>> >>> print range(9).remove(3) None >>> a = range(9).remove(3) >>> a >>> a = range(9) >>> a [0, 1, 2, 3, 4, 5, 6, 7, 8] >>> a.remove(3) >>> a [0, 1, 2, 4, 5, 6, …

Member Avatar for jrcagle
0
3K
Member Avatar for Matt Tacular

I have made a program that does the rolling for you for the board game "Risk" I even made it tell only the attackers top two rolled and it says the attacks and defenders rolled in order of highest to lowest. But I need it to say who has to …

Member Avatar for vegaseat
0
208
Member Avatar for lekshmi200

hi everybody i m lekshmi i m using python for web design i want to know hw we creaye sessions in python like in jsp nd all

Member Avatar for Ene Uran
0
87
Member Avatar for swapnamishra

Could anybody tell me the difference between Dispatch and DispatchEx. I am new to python and extremely confused about the usage of the two methods.

Member Avatar for N317V
0
2K
Member Avatar for riddz_22

is there anyway to clear the screen like if you are using cmd prompt?? yes i kno im a noob but any help would be greatly appreciated

Member Avatar for pty
0
173
Member Avatar for lekshmi200
Member Avatar for bleb1982

Below is a working program that goes through the xml document and outputs all of the data to an output file. That part is fine, but what I need help with is that the tagname Comments: in the xml document will have the word Patch* in it. I need to …

0
93
Member Avatar for willhs

Hi, this is my first post. I'm pretty new to python. I used it a bit in my summer research, and I wanted to apply it to my current situation. I'm trying to figure out a way to best assign chores in a 23-person frat house. I wanted to assign …

0
57
Member Avatar for katharnakh

I had a problem in connecting to remote MySQL server, which is being firewall protected. I searched in Internet to find possible solution, I found, I have to use port forwarding using SSH command, and I am using WinXP. But unfortunately, SSH command is not there in Windows. I used …

0
80
Member Avatar for lostpenan

I would like to read a html file that has asian encoding (gb2312), then extract the specific strings and then copy them into a new html file. But when i try to read the html file, i get gibberish. Im using Python 2.4.3 and i know it supports gb2312 but …

0
132
Member Avatar for jrcagle

Hi, I'm still trying to straighten out Tk in my mind. :eek: What I want to do is, under certain circumstances, completely clear the screen and display something new. Instead, it displays the new stuff together with the old. Here's excerpts from the code, with the offending line marked with …

Member Avatar for jrcagle
0
150
Member Avatar for Ginner

Hi all, I am working on a problem that should have been very trivial but has turned into a multiple marathon without an end in sight. I have written two very small scripts, one auxiliary script as below with two classes 'Node' and 'Queue' intended for use in a linked …

Member Avatar for N317V
0
254
Member Avatar for biganimal

This is a repost coded for everyone to read a little easier. I created this program for my daughter to use but I want the program to retain information on questions/answers and not have to start over every time program is started. [code] # questor.py # define some constants for …

0
69
Member Avatar for swapnamishra

How to execute the code written in a .py file. I wanted to know the exact command to be used. Is it executeFile("File.py")?

Member Avatar for Ene Uran
0
86
Member Avatar for biganimal

I created a program for my daughter and its a little rough around the edges. I need to make some improvements to it but stuck. I want it to be able to save input data and be able to load it back in so every time you start the program …

Member Avatar for Ene Uran
0
87
Member Avatar for Ene Uran
Member Avatar for Ene Uran
0
803
Member Avatar for Ene Uran

Is there a way to verify an exit, if you click on the exit symbol on a wxPython frame?

Member Avatar for Ene Uran
0
75
Member Avatar for biganimal

I have a simple program started and need help enhancing it and making it a more realistic database tool giving easy entry and retrieval. import shelve import string UNKNOWN = 0 HOME = 1 WORK = 2 FAX = 3 CELL = 4 class phoneentry: def __init__(self, name = 'Unknown', …

Member Avatar for bumsfeld
0
110

The End.