How to convert a namedtuple into a list of values and preserving the order of properties? December 12, 2023 by Tarik Why not just list? >>> list(g) [1, 'hello', 'Janitor']