Re: [Tutor] Fwd: IndentationError: unexpected indent

2016-11-09 Thread Joaquin Alzola
>Subject: [Tutor] Fwd: IndentationError: unexpected indent You are using a mixture of space and tabs or number of spaces. The exception give you the line that has the problem. --- Joaquin This email is confidential and may be subject to privilege. If you are not the intended recipient, ple

Re: [Tutor] Fwd: IndentationError: unexpected indent

2016-11-08 Thread Alan Gauld via Tutor
On 08/11/16 14:47, Palanikumar Gopalakrishnan wrote: > Hi Guys, > I tried this code from internet, Its returns following please > guide me to solve this error > > * passwordFile = open('File.txt') secretPassword = > passwordFile.read() print('Enter your password.') typedPassword = in

[Tutor] Fwd: IndentationError: unexpected indent

2016-11-08 Thread Palanikumar Gopalakrishnan
Hi Guys, I tried this code from internet, Its returns following please guide me to solve this error * passwordFile = open('File.txt') secretPassword = passwordFile.read() print('Enter your password.') typedPassword = input() if typedPassword == secretPassword:print('Acce