Format your output

Created by Jérôme Schneider

Provide a function named list_pretty_print, taking a single parameter: a list of integers.

Your function should display 5 integers per line (maximum), separated by , (coma space).

Example

list_pretty_print([42] * 6)

should give:

42, 42, 42, 42, 42
42

There's no corrections yet, hit the `Submit` button to send your code to the correction bot.

Keyboard shortcuts:

  • Ctrl-Enter: Send your code to the correction bot.
  • Escape: Get back to the instructions tab.

See solutions