Review Note
Last Update: 07/10/2024 01:20 PM
Current Deck: Python fundamentals
Published
Fields:
Code
for collection in [[], (), {}, [1], (1,), {"a": 1}]: print(bool(collection), end=" ") |
Output
False False False True True True
Explanation
Collections are falsy if empty else truthy.
Context
Python
Tags:
Suggested Changes:
Deck Changes (Suggestion to move the Note to the following Deck):
Field Changes:
Tag Changes: