fix(curriculum): Typo in Building a Password Generator - Step 62 (#54001)

This commit is contained in:
Enkai Huang
2024-03-07 03:28:11 +08:00
committed by GitHub
parent 3aaa2c1393
commit f74a276fcd

View File

@@ -9,7 +9,7 @@ dashedName: step-62
`all()` is a built-in Python function that returns `True` if all the elements inside a given iterable evaluate to `True`. Otherwise, it returns `False`.
You can combine the `all()` function with the list comphehension syntax to make your code more concise.
You can combine the `all()` function with the list comprehension syntax to make your code more concise.
Modify your `if` condition by passing the list comprehension you created in the previous step to the `all()` function.