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