Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Python Programming | Forum profile

Forum profile page for Python Programming on http://www.devshed.com. This report page is the aggregated overview from a single forum: Python Programming, located on the Message Board at http://www.devshed.com. This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period. Additional forum profile information for "Python Programming" on the Message Board at http://www.devshed.com is also shown in the following ways:

1) Latest Active Threads
2) Hot Threads for Last Week

Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.

Site: Dev Shed Forums - Open Source web development - Python Programming (site profile, domain info devshed.com)
Title: Python Programming
Url: http://forums.devshed.com/python-programming-11/
Users activity: 23 posts per thread
Forum activity: 24 active threads during last week
 

Posting activity on Python Programming:

  Week Month 3 Months
Threads: 24 94 386
Post: 48 195 888
 

Python Programming Posting activity graph:

Posts by:  day  week  month 

Top authors during last week:

Name
Posts
delnan
7
user's latest post:
Quiz in Python and GUI
Published (2010-01-01 11:18:00)
To time it, store the timestamp (time() from the time module) at the start of the quiz and subtract it from the timestamp the quiz is finished. Restart/Undo is a bit more complicated without goto... I'd store all the questions in one list and all the answers in another list, looping through both: python Code: Original - python Code questions = ['first question', 'second question', 'third question']...
mbox_96
5
user's latest post:
Sending AT commands...
Published (2010-01-04 02:36:00)
Quote: Originally Posted by Scorpions4ever Does your code even run?? Did you read the documentation for the serial class. If you look at the documentation, read() accepts a parameter, the # of bytes to read in. You are calling it with no parameters. I got it now, thanks... "serialPort.read()" reads whole string at a time from buffer.
Moonsoft
3
user's latest post:
How to determine if a variable...
Published (2009-12-27 07:51:00)
Quote: Originally Posted by delnan Are the suites indented correctly? What you've posted here is not correct (btw, use [CODE.] Tags please), but the interpreter would have complained if your code wasn't indented correctly... Does "except:" catch it? It must catch it... if it doesn't, you've got a serious problem. Apparently it doesn't recognize it as GraphicsError or TclError or IndexError etc......
Paschoolgirl
3
user's latest post:
Help Regarding Memory Error
Published (2009-12-27 01:15:00)
Quote: Originally Posted by delnan I guess I know why it freezes... your giant if clause alway evaluates to True (thus, all characters are appended and the loop never ends). The interpreter evalutes If c is actually "a", it got the single true condition it needs to cosider the whole if statement True. If c is not "a", it continues and evaluates Code: "A" because the "or"...
Nik
3
user's latest post:
Convert of index.pl to index.py
Published (2010-01-02 02:27:00)
i want automatic conversion not manually, that would take days.
msprayb
3
user's latest post:
Problem with how to solve a problem
Published (2010-01-02 09:49:00)
Quote: Originally Posted by AKalair Hi, Thanks for the replies, so say for example I have the following hand: {a:1, b:1, t:1} (The actual hand in the game has 7 letters but this is simpler for an example) Now for a human its obvious you can make either 'bat' or 'tab' or 'at' But how can I get the computer to make either of those words? You will have to create a file with all available words that can be used given...
dwblas
3
user's latest post:
Problem with how to solve a problem
Published (2010-01-02 14:43:00)
You can use combinations in itertools http://docs.python.org/library/itertools.html to give the letter combinations for 2 lettters, then 3 through 7 letters, and check those against words sorted on letters. You could use permutations and not sort the words you compare to, but that is many, many more lookups since abc would yield one sorted lookup, but you would have to look up 'abc', 'acb', 'bac',...
OlyPerson
2
user's latest post:
Threading multiple processes
Published (2009-12-26 01:41:00)
I'm creating a python script to measure and display the temperature of my computer and I'm wanting to accept user input to terminate the program, increase and decrease time interval between measurements and pause the application. Here's what I've tried (note this isn't the whole thing, cut out a lot): Code: # Import all the stuff def main(self): # I set up screen stuff here inpt = checkInput(screen) inpt.start()...
stonieh
2
user's latest post:
Simple word stemming
Published (2009-12-26 16:42:00)
I'm new to this forum (and rather new to Python), so hello to all and bear with me I'm trying to make a word stemmer for the Danish language. Basically I want to do what Martin Porter has already done (and I am not allowed to post URL's but google "Danish stemming", first hit), but since his Python wrapper is too much for me to handle right now, I was wondering if anyone can help me get started implementing...
FS Lover
2
user's latest post:
Help get it to work -...
Published (2009-12-26 10:50:00)
hi there! doesn't have anybody any idea about this?
 

Latest active threads on Python Programming::

Dev Shed Forums - Open Source web development
Started 2 days, 8 hours ago (2010-01-03 23:46:00)  by Scorpions4ever
Call serialPort.read(SOMESIZE) to get back data from the serial port. What you're getting back from serialport.write() is whether the write succeeded or not. Code: # Read upto 10 bytes from the port. retdata = serialPort.read(10)
Thread:  Show this thread (6 posts)   Thread info: Sending AT commands... Size: 540 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Sending AT commands... :: Python Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 1 week, 3 days ago (2009-12-26 16:42:00)  by stonieh
I'm new to this forum (and rather new to Python), so hello all and please bear with me I'm trying to make a word stemmer (automatically find the root form of a word) for the Danish language. Basically I want to do what Martin Porter has already done (and I am not allowed to post URL's but google "Danish stemming", first hit), but since his Python wrapper is too much for me ...
Thread:  Show this thread (3 posts)   Thread info: Simple word stemming Size: 1,784 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Simple word stemming (finding root form of word) :: Python Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 4 days, 14 hours ago (2010-01-01 17:49:00)  by msprayb
You will need to assign values to the individual letters. Then the program will be able to calculate the highest possible score or value for the word. I hope this helps.
Thread:  Show this thread (7 posts)   Thread info: Problem with how to solve a problem Size: 242 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with how to solve a problem :: Python Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 4 days, 19 hours ago (2010-01-01 13:10:00)  by Nik
please someone help me a bit to get started
Thread:  Show this thread (5 posts)   Thread info: Convert of index.pl to index.py Size: 99 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Convert of index.pl to index.py :: Python Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 5 days, 15 hours ago (2009-12-31 16:53:00)  by stringzar
Supposedly pyinstaller can create a single standalone executable file, but I've never actually tried it. http://www.pyinstaller.org/
Thread:  Show this thread (3 posts)   Thread info: N00b question;;; Size: 205 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: N00b question;;; :: Python Programming :: Dev Shed Forums - Open Source web development"
Dev Shed Forums - Open Source web development
Started 4 days, 21 hours ago (2010-01-01 11:18:00)  by delnan
To time it, store the timestamp (time() from the time module) at the start of the quiz and subtract it from the timestamp the quiz is finished. Restart/Undo is a bit more complicated without goto... I'd store all the questions in one list and all the answers in another list, looping through both: python Code:...
Thread:  Show this thread (2 posts)   Thread info: Quiz in Python and GUI Size: 17 kb
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quiz in Python and GUI :: Python Programming :: Dev Shed Forums - Open Source web development"
 

Hot threads for last week on Python Programming::

Python Programming
Started 4 days, 14 hours ago (2010-01-01 17:49:00)  by msprayb
You will need to assign values to the individual letters. Then the program will be able to calculate the highest possible score or value for the word. I hope this helps.
Thread:  Show this thread (7 posts)   Thread info: Problem with how to solve a problem Size: 242 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Problem with how to solve a problem :: Python Programming :: Dev Shed Forums - Open Source web development"
Python Programming
Started 2 days, 8 hours ago (2010-01-03 23:46:00)  by Scorpions4ever
Call serialPort.read(SOMESIZE) to get back data from the serial port. What you're getting back from serialport.write() is whether the write succeeded or not. Code: # Read upto 10 bytes from the port. retdata = serialPort.read(10)
Thread:  Show this thread (6 posts)   Thread info: Sending AT commands... Size: 540 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Sending AT commands... :: Python Programming :: Dev Shed Forums - Open Source web development"
Python Programming
Started 4 days, 19 hours ago (2010-01-01 13:10:00)  by Nik
please someone help me a bit to get started
Thread:  Show this thread (5 posts)   Thread info: Convert of index.pl to index.py Size: 99 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Convert of index.pl to index.py :: Python Programming :: Dev Shed Forums - Open Source web development"
Python Programming
RE: N00b question;;; - 3 new posts
Started 5 days, 15 hours ago (2009-12-31 16:53:00)  by stringzar
Supposedly pyinstaller can create a single standalone executable file, but I've never actually tried it. http://www.pyinstaller.org/
Thread:  Show this thread (3 posts)   Thread info: N00b question;;; Size: 205 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "RE: N00b question;;; :: Python Programming :: Dev Shed Forums - Open Source web development"
Python Programming
Started 4 days, 21 hours ago (2010-01-01 11:18:00)  by delnan
To time it, store the timestamp (time() from the time module) at the start of the quiz and subtract it from the timestamp the quiz is finished. Restart/Undo is a bit more complicated without goto... I'd store all the questions in one list and all the answers in another list, looping through both: python Code:...
Thread:  Show this thread (2 posts)   Thread info: Quiz in Python and GUI Size: 17 kb
Related Threads: Same Site | All Sites
Customize:  Customize "RE: Quiz in Python and GUI :: Python Programming :: Dev Shed Forums - Open Source web development"
Python Programming
Started 1 week, 3 days ago (2009-12-26 16:42:00)  by stonieh
I'm new to this forum (and rather new to Python), so hello all and please bear with me I'm trying to make a word stemmer (automatically find the root form of a word) for the Danish language. Basically I want to do what Martin Porter has already done (and I am not allowed to post URL's but google "Danish stemming", first hit), but since his Python wrapper is too much for me ...
Thread:  Show this thread (3 posts)   Thread info: Simple word stemming Size: 1,784 bytes
Related Threads: Same Site | All Sites
Customize:  Customize "Simple word stemming (finding root form of word) :: Python Programming :: Dev Shed Forums - Open Source web development"