Skip to content

Commit 0bfe63b

Browse files
committed
less boring password
1 parent 71fc9db commit 0bfe63b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

answers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ isn't exactly like mine but it works just fine it's ok, and you can
7373
```
7474

7575
6. We can compare the word against an empty string (`""` or `''`) to
76-
check if it's empty. In this example, the password is "secret".
76+
check if it's empty. In this example, the password is "s3cr3t".
7777

7878
```py
7979
word = input("Enter your password: ")
8080

81-
if word == "secret":
81+
if word == "s3cr3t":
8282
print("Welcome!")
8383
elif word == "":
8484
print("You didn't enter anything.")

0 commit comments

Comments
 (0)