Re: [Tutor] beginning to code

2017-09-10 Thread Alan Gauld via Tutor
For some reaspon I'm missing the original post so apologies to replying to Senthil instead of the OP directly... >> The code i should try is as following: >> >> while True: >> print ('who are you') >> name = input () >> if name != 'bert': >> continue >> pri

Re: [Tutor] beginning to code

2017-09-10 Thread boB Stepp
Hello kerbi! On Sun, Sep 10, 2017 at 6:32 AM, Elmar Klein wrote: > Hi there, > > im starting to learn how to code (bougt me the "automate the boring stuff > with phyton" book). > > And im not going anywhere with a code sample using the "continue" statement. > > The code i should try is as followi

Re: [Tutor] beginning to code

2017-09-10 Thread Bob Gailer
On Sep 10, 2017 8:40 AM, "Senthil Kumaran" wrote: > > > unindent does not match any outer indention level > > Means that your Intendentaion is not proper. You should align your print > statement and rest to the same level as if statement. > > Use a proper editor that supports Python Syntax. > Also

Re: [Tutor] beginning to code

2017-09-10 Thread Senthil Kumaran
> unindent does not match any outer indention level Means that your Intendentaion is not proper. You should align your print statement and rest to the same level as if statement. Use a proper editor that supports Python Syntax. On Sun, Sep 10, 2017 at 4:32 AM, Elmar Klein wrote: > Hi there, >

[Tutor] beginning to code

2017-09-10 Thread Elmar Klein
Hi there, im starting to learn how to code (bougt me the "automate the boring stuff with phyton" book). And im not going anywhere with a code sample using the "continue" statement. The code i should try is as following: while True:   print ('who are you')   name = input ()   if n