Forum: Python Jun 25th, 2005 |
| Replies: 9 Views: 6,151 I tried running what you sent me and it didn't seem to work. When I tell python to print something (such as all the html code along with the form data) where is it printing it to? I'm also very new... |
Forum: Python Jun 25th, 2005 |
| Replies: 9 Views: 6,151 Thanks for the reply. I am pretty good at html, and I know how to make a form. What I'm struggling with is how to make the form talk to the python program. I can't seem to get it to work.
-Nick |
Forum: Python Jun 25th, 2005 |
| Replies: 9 Views: 6,151 One more quick question...
How should the HTML look? I can't really figure out how to get the form to call the python program.
Thanks again in advance!
-Nick |
Forum: Python Jun 24th, 2005 |
| Replies: 9 Views: 6,151 Thanks a lot! This should help out a lot. |
Forum: Python Jun 24th, 2005 |
| Replies: 9 Views: 6,151 Hey all,
I am very new to python, but I hear that it can be used to handle web forms. Does anybody know of where I can find a good tutorial on how to create something that will handle form input?... |
Forum: Python Jun 15th, 2005 |
| Replies: 7 Views: 7,774 Thanks for the ideas. Right now, I've just been using the IDLE program that came with the python download, but I will definetely look into some other editors and the movable python. Haha that would... |
Forum: Python Jun 14th, 2005 |
| Replies: 7 Views: 7,774 Thank you vegaseat! I never would have guessed that. |
Forum: Python Jun 14th, 2005 |
| Replies: 7 Views: 7,774 Sorry, I should have just included the whole program in the first post. I made the getMax() and the isDivisible() methods. I'll include the whole program here
#returns true if the 'a' is evenly... |
Forum: Python Jun 13th, 2005 |
| Replies: 7 Views: 7,774 I found the card and here is an example of what I am talking about:
def getLCD(ls):
Max = getMax(ls)
lcd = Max
length = len(ls)
temp = 0
while temp<length: |
Forum: Python Jun 12th, 2005 |
| Replies: 7 Views: 7,774 Hi everyone.
This is my first post in the python thread and I am very new to the language. A while ago, i wrote a program that find the least common denominator for an array of numbers in Java. I... |