Re: [Tutor] unknown syntax error

2016-12-17 Thread Joaquin Alzola
>hey i dont know if this is the right place but i was just coding in idle and >kept getting this syntax error and i can not see m to fix it here is my bit of >code: > if age == my_age: > print("i'm",age,"too") > else: > if age < 14: > print(" i'm older

Re: [Tutor] unknown syntax error

2016-12-17 Thread George Fischhof
Hi Oliver, Your else statement should be unindented by one level ;-) The else must be at same indent level as the if it belongs to. BR, George 2016-12-11 17:30 GMT+01:00 oliver patterson < oliverjamespatter...@hotmail.com>: > hey i dont know if this is the right place but i was just coding in i

Re: [Tutor] unknown syntax error

2016-12-15 Thread bob gailer
On 12/11/2016 11:30 AM, oliver patterson wrote: hey i dont know if this is the right place but i was just coding in idle and kept getting this syntax error and i can not see m to fix it here is my bit of code: my_age=14 age=input("How old are you?:") print("type start()") def start(): pri

Re: [Tutor] unknown syntax error

2016-12-15 Thread boB Stepp
On Sun, Dec 11, 2016 at 10:30 AM, oliver patterson < oliverjamespatter...@hotmail.com> wrote: > hey i dont know if this is the right place but i was just coding in idle and kept getting this syntax error and i can not see m to fix it here is my bit of code: Yes, this is the right place. Welcome t

[Tutor] unknown syntax error

2016-12-14 Thread oliver patterson
hey i dont know if this is the right place but i was just coding in idle and kept getting this syntax error and i can not see m to fix it here is my bit of code: my_age=14 age=input("How old are you?:") print("type start()") def start(): print("hey") if age == my_age: print("i'm"