Provide a function named list_pretty_print, taking a single parameter: a list of integers.
list_pretty_print
Your function should display 5 intgers per line (maximum), separated by , (coma space).
,
list_pretty_print([42] * 6)
should give:
42, 42, 42, 42, 42 42