13th August 2021
Computer Science⚑
Programming⚑
Basics⚑
- New: Filter function.
-
New: Dict.setdefault.
setdefault(key[, default]): Ifkeyis in the dictionary, return its value. If not, insert key with a value ofdefaultand returndefault.defaultdefaults toNone. -
New: F-strings.
pytest⚑
- New: Execute just one test or test class.