+ 2
Error detect
4 Answers
+ 3
pass is a resrved word in Python - it has a special meaning so it cannot be used as a variable name. Similarly, you would not be able to use key words like âifâ or âforâ as names.
+ 3
There are several issues - working through one by one, take a look at the syntax for finding the length of an object. It should be len(name) - in this case len(passw). There is also an error in your comparison operator (<=).
+ 1
@dam now I have change the variable name but it show error in line 5
+ 1
@dam now check...