
Nov. 29, 2017
7:51 p.m.
https://docs.python.org/3/tutorial/stdlib2.html#output-formatting
import pprint>>> t = [[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta',... 'yellow'], 'blue']]]...>>> pprint.pprint(t, width=30)
It doesn't work. There's one "]" too much in blue... It should look like this:
import pprint>>> t = [[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta',... 'yellow'], 'blue']]...>>> pprint.pprint(t, width=30)
Then it works.

December 2017
3:44 p.m.
The example in the documentation works. It should look like this:
import pprint t = [[[['black', 'cyan'], 'white', ['green', 'red']], [['magenta', ... 'yellow'], 'blue']] ... pprint.pprint(t, width=30)
Your example does not. It is missing one "]". Mariatta Wijaya
2654
Age (days ago)
2659
Last active (days ago)
1 comments
2 participants
participants (2)
-
epiphany@tutanota.com
-
Mariatta Wijaya