Skip to content

13th August 2021

Computer Science

Programming

Basics

  • New: Filter function.
  • New: Dict.setdefault.

    setdefault(key[, default]): If key is in the dictionary, return its value. If not, insert key with a value of default and return default. default defaults to None.

  • New: F-strings.

pytest

  • New: Execute just one test or test class.