
https://www.youtube.com/playlist?list=PLpVeA1tdgfCAtZiF-mW1IpiUNDQQHrWmF
Size: a a a
Menu = namedtuple("Menu", ["text", "photo_url"])
# same as
Menu = namedtuple("Menu", "text photo_url")
collections.namedtuple(typename, field_names[, verbose=False][, rename=False])
The field_names are a sequence of strings such as ['x', 'y']. Alternatively, field_names can be a single string with each fieldname separated by whitespace and/or commas, for example 'x y' or 'x, y'.