GIDForums  

Go Back   GIDForums > Computer Programming Forums
User Name
Password
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

Post New Thread
Threads in Forum : Python Forum Forum Tools Search this Forum
  Rating Thread / Thread Starter Last Post Reverse Sort Order Replies Views
Arrow
by admin
The GIDForums™ Team is proud to announce that GIDForums™ is now among one of the very first Webmaster / Programming forums to offer a custom-written Python Syntax Highlighter BBCode ( bb code) to it's valued members and readers. Please use the and tag pair to enclose any python code so that it...
24-Sep-2005 22:09
by crystalattice Go to last post
1 3,324
Question
by woovy28
Hi ! I'm new to Python, and i want to use the following code to connect to a xmlrpc server for some inquiry, I wanna know if there is anything wrong with the code ? Shouln't it when run prints the server_url and then connected ? (it doesn't print any) Second can I activate and call this class...
14-Jun-2006 13:43
by crystalattice Go to last post
1 540
 
by DeZ
I have some trouble using databases (pysqlite) and how to implement it. oh and also how do i use cookies?? here is the code that im working on """Cart page handler for COMP249 Store""" import cgi import page import Cookie import SimpleCookie import os
09-May-2006 14:28
by crystalattice Go to last post
1 596
 
by crystalattice
The two programs below demonstrate how Python works with classes. The first program creates a Rectangle object, complete with length, width, area, and perimeter values. The second program is a driver to "test drive" the rectangle.py module, showing how it works. This doesn't show all the...
20-Apr-2006 19:05
by crystalattice Go to last post
0 858
 
Thread Rating: 3 votes, 5.00 average. by crystalattice
Here's a program I wrote for use in my Colonial Marines game. It uses a random number generator to simulate dice rolls. Only a few dice combinations are implemented right now but you can change this program if you want to use it. If you discover any problems with it, please let me...
17-Apr-2006 18:34
by crystalattice Go to last post
1 12,963
 
by crystalattice
Here's another script I wrote. This one lists the prime numbers from 2 to 1000. Again, feel free to use this as needed; just save it with .py as the extension. ############################################################### #List prime numbers from 2 to 1000. #Author: Cody Jackson #Date: ...
16-Apr-2006 09:19
by davekw7x Go to last post
4 7,451
 
by miniwolle
Hi. Can anyone tell me the python code for a simple countdown from eg. 2.00 minutes. It should be printet out to the screen. When it is finished it should write "Time is up" Hope you can help. Henrik
15-Apr-2006 14:28
by davekw7x Go to last post
4 3,551
 
by crystalattice
I wrote a few little scripts to showcase how Python works for simple problems. They don't do anything major; they're just to showcase Python syntax in action so you can compare it to other languages. The first program is a simple temperature convertor, from Celsius to Fahrenheit. Feel free to...
11-Apr-2006 23:00
by crystalattice Go to last post
0 1,022
 
by blacklusterseph
I'm having trouble with importing modules for python2.3 The modules I want to import are located in: /usr/local/lib/python2.3/site-packages in various subdirectories. I've setup PYTHONPATH in my bash profile with the following: PYTHONPATH = /usr/local/lib/python2.3/site-packages; export...
27-Mar-2006 03:59
by blacklusterseph Go to last post
2 913
 
by rbp
There are so many excellent python resources around, post what you've found here.
24-Feb-2006 07:19
by rbp Go to last post
1 765
 
by iota
http://www.microsoft.com/downloads/details.aspx?FamilyID=F22E51E5-B82E-4A54-9CCC-3418E0BF5639&displaylang=en
23-Feb-2006 21:40
by crystalattice Go to last post
1 848
 
by Zombie
Ok, i have written the stuff in the python shell, what do I do now with the compiling and making it able to be run, because im a noob at programming and i was goin to make a game with some people. Is python the best to use for games with gameboy advance graphics?
22-Feb-2006 21:43
by crystalattice Go to last post
3 1,220
 
by crystalattice
For anyone interested in the phenomenom that is Ruby on Rails but would like to play w/ Python, there is TurboGears. For those who don't know, RoR is a way to create dynamic, database driven web apps. It allows for rapid web development with less code than traditional methods such as...
22-Feb-2006 04:08
by rbp Go to last post
5 1,291
Post
by crystalattice
I just posted a GID Community blog entitled: Beginning Python Tutorial (Part 9). Please let me know what you think. This is an auto-generated message posted by GIDNetwork™ on behalf of the author.
19-Feb-2006 02:04
by crystalattice Go to last post
0 1,252
Post
by crystalattice
I just posted a GID Community blog entitled: Beginning Python Tutorial (Part 8). Please let me know what you think. This is an auto-generated message posted by GIDNetwork™ on behalf of the author.
02-Nov-2005 10:11
by crystalattice Go to last post
0 1,160
 
by crystalattice
When you want to swap numbers in C/C++, you might write something like this: include <stdio.h> void swap(int *i, int *j) { int t; t = *i; *i = *j; *j = t;
16-Oct-2005 01:02
by crystalattice Go to last post
0 4,535
 
by crystalattice
Here's a little program from O'Reilly's "Learning Python" showing how to create an addition program that takes a variable number of arguments: def adder(*args) : sum = args # init to arg1 for next in args : sum = sum + next # add items 2..N return...
08-Oct-2005 23:06
by crystalattice Go to last post
2 1,577
 
by crystalattice
Found this link while perusing OSNews. Registration is required (it's the IBM developer section), but it's worthwhile because IBM has a lot of good programmer info in nearly every area. Here's what the article is about:
07-Oct-2005 23:49
by crystalattice Go to last post
0 1,126
Post
by crystalattice
I just posted a GID Community blog entitled: Beginning Python Tutorial (Part 7). Please let me know what you think. This is an auto-generated message posted by GIDNetwork™ on behalf of the author.
06-Oct-2005 20:24
by crystalattice Go to last post
0 1,085
Post
by crystalattice
I just posted a GID Community blog entitled: Beginning Python Tutorial (Part 6). Please let me know what you think. This is an auto-generated message posted by GIDNetwork™ on behalf of the author.
05-Oct-2005 19:48
by crystalattice Go to last post
0 1,154
Post
by crystalattice
I just posted a GID Community blog entitled: Beginning Python Tutorial (Part 5). Please let me know what you think. This is an auto-generated message posted by GIDNetwork™ on behalf of the author.
04-Oct-2005 05:27
by crystalattice Go to last post
0 1,375
Post New Thread

Recent GIDBlogOnce again, no time for hobbies by crystalattice

Display Options Moderators
Showing threads 81 to 100 of 104 Moderators : 1
Sorted By Sort Order
From The
LuciWiz  
Forum Tools Search this Forum
Search this Forum :

Advanced Search

New posts New posts More than 15 replies or 150 views Hot thread with new posts
No new posts No new posts More than 15 replies or 150 views Hot thread with no new posts
Closed Thread Thread is closed  
 
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Network Sites: GIDNetwork · GIDWebHosts · GIDSearch · Learning Journal by J de Silva, The

All times are GMT -6. The time now is 09:37.


vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.