[Tutor] Hi!

2013-11-12 Thread Vlad Olariu
Hello. I am new to python and mailing lists. Where should I post some code
if I need to?
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Hi!

2013-11-12 Thread Mark Lawrence

On 09/11/2013 21:04, Vlad Olariu wrote:

Hello. I am new to python and mailing lists. Where should I post some
code if I need to?



Here but only after you've read this http://sscce.org/

--
Python is the second best programming language in the world.
But the best has yet to be invented.  Christian Tismer

Mark Lawrence

___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Hi!

2013-11-12 Thread Joel Goldstick
On Sat, Nov 9, 2013 at 4:04 PM, Vlad Olariu florinvlad.ola...@gmail.com wrote:
 Hello. I am new to python and mailing lists. Where should I post some code
 if I need to?

 ___
 Tutor maillist  -  Tutor@python.org
 To unsubscribe or change subscription options:
 https://mail.python.org/mailman/listinfo/tutor

Tell us your python version and OS version

Try to create a small code example that shows the question you have.

If you get an error in your code, copy and paste the complete traceback here

Some people post to pastebin, but many others don't like that.  So,
best to keep example small and post here

Finally, post in plaintext, not html


-- 
Joel Goldstick
http://joelgoldstick.com
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor


Re: [Tutor] Hi!

2013-11-12 Thread Amit Saha
Hello,

On Sun, Nov 10, 2013 at 7:04 AM, Vlad Olariu
florinvlad.ola...@gmail.com wrote:
 Hello. I am new to python and mailing lists. Where should I post some code
 if I need to?

Welcome. Here is an example of a post with code. Assume that I am
explaining to someone how they can exit out a while loop before the
condition violated the first time:

A while loop is an example of an entry controlled loop. This means
that the condition is checked before entering the loop. Hence, this
means if your loop condition was violated during the previous
iteration, but not at the beginning, your loop will terminate after
the first violation, not before it.

Here is a simple example:

 a = 1
 while a  5:
... a = a+3
... print a
...
4
7



.. and so on. Also switch to Plain Text in your Gmail window before
you post. (if you do not know what this means, please search on the
Web a bit).

Good Luck.

Best.
Amit.


-- 
http://echorand.me
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
https://mail.python.org/mailman/listinfo/tutor