Please help me debug!
Hello, this program uses many questions about you to create a personalized password. When I run the program, this happens:
Any suggestions or comments are welcomed.
That's because on line 60 you didn't close all the parentheses just add )
to the end of line 60 and it should work
@Codemonkey51 Did you actually test that? If you just add )
to the end of line 60, it won't work because there are more issues.
I did test although the only other error I found was sibling not defined @UniqueOstrich18 ¯_(ツ)_/¯
Hi, @hendryxu . Missing parenthesis at the end of line 60, that's why syntax error occurs. This happens because Python parsing your script file and find syntax error after reading a file and stops after it. And says that error is located before line 65. And you should find it before line 65.
On line 60, change it to:
Change line 56 to:
Change line 61 to:
Change line 41 to:
It should work after you make those changes.
The fixed program is at https://repl.it/@UniqueOstrich18/Password-writer, if you just want to copy the code.
There are multiple fixes you need to make because I discovered more issues.
If this was helpful, please mark it as the answer.
@UniqueOstrich18 Thank you, I appreciate the help!