Glossary

`in` operator

An operator that tests membership of a value in a set. Returns `True` if the value is present in the set. Example: `if ch in ['a'..'z'] then`. (Ch. 12)

Learn More

Related Terms