Robots Atlas>ROBOTS ATLAS

Python โ€” From Basics to Advanced ยท Functions and Modules

Arguments: default, keyword, *args, **kwargs

Functions and Modules

Introduction

Python has flexible argument mechanics: default values, keyword arguments and two ways to collect leftovers โ€” *args becomes a tuple, **kwargs becomes a dict. In this lesson you get comfortable with all four kinds and the order they must appear in a function signature.