Python Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesPython Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
  #1  
Old March 17th, 2004, 05:53 AM
Grim Archon's Avatar
Grim Archon Grim Archon is offline
Mini me.
Dev Shed Novice (500 - 999 posts)
 
Join Date: Nov 2003
Location: Cambridge, UK
Posts: 783 Grim Archon User rank is Corporal (100 - 500 Reputation Level)Grim Archon User rank is Corporal (100 - 500 Reputation Level)Grim Archon User rank is Corporal (100 - 500 Reputation Level)Grim Archon User rank is Corporal (100 - 500 Reputation Level)  Folding Points: 1488 Folding Title: Novice Folder
Time spent in forums: 3 Days 2 h 15 m 57 sec
Reputation Power: 7
Send a message via MSN to Grim Archon
Exclamation Asking For Help?

Here are some ideas for getting help fast:
  • Search the forums for key words (e.g. cgi, thread, py2exe, Tkinter). Maybe the question was asked before.
  • Make the Title describe the problem.
  • If you post code - use the code block # button on the form to preserve the layout. Indentation is critical. Experiment with the preview button!
  • If the code is big (more than a screen) then attach it as a zip.
  • If it is unusual, mention your configuration. (Like you are using Python version 1.5 on an a Amiga 500 with 4Mb memory). It is nice to know and can be useful.
  • Generally people don't like being asked to do someone's homework assignment Particularly when the person has not done any research.
  • Don't forget - Use the # button!
__________________
*** Experimental Python Markup CGI V2 ***

Last edited by Grim Archon : March 17th, 2004 at 06:01 AM.

Reply With Quote
  #2  
Old March 21st, 2004, 11:02 AM
MasterChief MasterChief is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2003
Location: Virginia
Posts: 491 MasterChief User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 h 47 m 47 sec
Reputation Power: 6
Send a message via AIM to MasterChief Send a message via MSN to MasterChief
I suggest giving this a read:
How to Ask Questions the Smart Way

Reply With Quote
  #3  
Old March 24th, 2004, 03:42 AM
Grim Archon's Avatar
Grim Archon Grim Archon is offline
Mini me.
Dev Shed Novice (500 - 999 posts)
 
Join Date: Nov 2003
Location: Cambridge, UK
Posts: 783 Grim Archon User rank is Corporal (100 - 500 Reputation Level)Grim Archon User rank is Corporal (100 - 500 Reputation Level)Grim Archon User rank is Corporal (100 - 500 Reputation Level)Grim Archon User rank is Corporal (100 - 500 Reputation Level)  Folding Points: 1488 Folding Title: Novice Folder
Time spent in forums: 3 Days 2 h 15 m 57 sec
Reputation Power: 7
Send a message via MSN to Grim Archon
This FAQ shows you how to mark up text for the forum:
http://forums.devshed.com/misc.php?do=bbcode#code

Reply With Quote
  #4  
Old March 26th, 2004, 07:18 PM
netytan's Avatar
netytan netytan is offline
Hello World :)
Dev Shed Regular (2000 - 2499 posts)
 
Join Date: Mar 2003
Location: Hull, UK
Posts: 2,479 netytan User rank is Sergeant Major (2000 - 5000 Reputation Level)netytan User rank is Sergeant Major (2000 - 5000 Reputation Level)netytan User rank is Sergeant Major (2000 - 5000 Reputation Level)netytan User rank is Sergeant Major (2000 - 5000 Reputation Level)netytan User rank is Sergeant Major (2000 - 5000 Reputation Level)netytan User rank is Sergeant Major (2000 - 5000 Reputation Level) 
Time spent in forums: 1 Week 2 Days 7 h 39 m 48 sec
Reputation Power: 46
Send a message via ICQ to netytan Send a message via AIM to netytan Send a message via MSN to netytan Send a message via Yahoo to netytan
I cant stress enough how important the use of code tags are when posting code! Especially here since Python uses white space to define the beginning and end of code blocks.

You can do this as discribed by Grim in this thread: http://forums.devshed.com/showthrea...t=109293&page=2

Happy posting,

Mark.
__________________
...
> (define links (list google scheme ruby python others ...)) ; Read my blog at http://netytan.blogspot.com/.
> _



Reply With Quote
  #5  
Old June 12th, 2004, 03:55 AM
DevCoach DevCoach is offline
Contributing User
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Feb 2004
Location: London, England
Posts: 1,174 DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 6 h 3 m 45 sec
Reputation Power: 207
Also, don't just post up code and say "this doesn't work". This does not give enough enough information. You also need to state:

* what you expect the code to do.

* what the code actually does. If it throws an exception then give the traceback, or the last few lines if it is a long one. If it prints a result that you did not expect then say what it is. If you expected the answer 42 and it gave you 24 then say so, since without that information it would be virtually impossible for someone else to help.

* some example data, if applicable. e.g. if your code iterates over a list then give a short example list that causes it to fail.

* Try to create a minimal example that shows the failure. cutting and pasting hundreds of lines of code and data can be as unhelpful as posting not enough.

It is also often helpful to give some context information - what is the overall problem that this code is trying to solve? Often someone will be able to point out a better way of doing it, rather than fix low level problems with the code.

Dave - The Developers' Coach

Reply With Quote
  #6  
Old September 30th, 2005, 06:19 PM
DevCoach DevCoach is offline
Contributing User
Dev Shed Beginner (1000 - 1499 posts)
 
Join Date: Feb 2004
Location: London, England
Posts: 1,174 DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level)DevCoach User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Week 5 Days 6 h 3 m 45 sec
Reputation Power: 207
Hers is some more advice on asking good questions:

1) assume someone has already asked the question in the past and got the perfect answer. devise a search query that will find that thread.

2) do the search - there is a good chance that it will succeed, in which case you have no need to post the question at all.

3) if the search fails, then post your question. In the title of the post include the search terms that you previously came up with. This will ensure that the title is relevant to the question so casual browsers of the forum will know whether it is something they can answer. It will also make it easy for future users with the same question to find the thread.

Dave

Reply With Quote
  #7  
Old September 30th, 2005, 10:29 PM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonder.
Posts: 5,516 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 4 Weeks 1 Day 14 h 51 m 14 sec
Reputation Power: 378
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook
Also no cross posting.... errr i hate cross posters , its always best to keep your thread were it belongs.

Reply With Quote
  #8  
Old October 1st, 2005, 12:46 AM
SimonGreenhill's Avatar
SimonGreenhill SimonGreenhill is offline
(retired)
Dev Shed God 11th Plane (10000 - 10499 posts)
 
Join Date: Dec 2003
Location: The Laboratory
Posts: 10,101 SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)SimonGreenhill User rank is General 5th Grade (Above 100000 Reputation Level)  Folding Points: 4925 Folding Title: Novice Folder
Time spent in forums: 3 Months 3 Weeks 5 h 41 m 45 sec
Reputation Power: 1331
Facebook
As mentioned above - please post your code in CODE tags or HIGHLIGHT tags as this makes it easier for us to help you.

Code Tag Use:

You type:
[code]
# your code goes here...
for i in range( 0, 1 ):
print i
[/code]

It shows up like this:
Code:
# your code goes here...
for i in range( 0, 1 ):
   print i


Highlighting Code Tags:

If you want to get really cool looking code, use the HIGHLIGHT tags:
[highlight=python]
# your code goes here...
for i in range( 0, 1 ):
print i
[/highlight]

outputs this:
python Code:
Original - python Code
  1.  
  2. # your code goes here...
  3. for i in range( 0, 1 ):
  4.    print i


Also - keep this in mind:
Quote:
Originally Posted by jharnois
Explain your problem instead of asking how to do what you decided was the solution.


If you're new here, you should probably read the General Forum Rules and the Frequently Asked Questions.

--Simon

Last edited by SimonGreenhill : October 1st, 2005 at 12:50 AM.

Reply With Quote
  #9  
Old October 2nd, 2005, 01:23 AM
xlordt's Avatar
xlordt xlordt is offline
Only the strong survives!!.
Dev Shed God 1st Plane (5500 - 5999 posts)
 
Join Date: Feb 2003
Location: A World of wonder.
Posts: 5,516 xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)xlordt User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1Folding Points: 103339 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 4 Weeks 1 Day 14 h 51 m 14 sec
Reputation Power: 378
Send a message via ICQ to xlordt Send a message via AIM to xlordt Send a message via MSN to xlordt Send a message via Yahoo to xlordt Send a message via Google Talk to xlordt Send a message via Skype to xlordt
Facebook
also.. almost forgot.. please make your post as clear as posiable. this includes, Your code, and errors.

Reply With Quote
  #10  
Old February 20th, 2006, 08:58 AM
CPUFreak91 CPUFreak91 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: May 2005
Location: Mars
Posts: 25 CPUFreak91 Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 4 h 19 m 28 sec
Reputation Power: 0
Send a message via ICQ to CPUFreak91 Send a message via AIM to CPUFreak91 Send a message via MSN to CPUFreak91 Send a message via Yahoo to CPUFreak91
If you are looking for tutorials, google or go to www.awaretek.com/tutorials.html
Comments on this post
netytan agrees: Google, very useful

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPython Programming > Asking For Help?


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump