Skip to content

Instantly share code, notes, and snippets.

@starenka
Last active December 20, 2015 08:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save starenka/6104631 to your computer and use it in GitHub Desktop.
Save starenka/6104631 to your computer and use it in GitHub Desktop.
>>> one = {}
>>> type(one)
<type 'dict'>
>>> two = {
...
...
...
... }
>>> type(two)
<type 'dict'>
>>> three = {
... """
... this is a comment!
... """
... }
>>> type(three)
<type 'set'>
>>> import sys
>>> sys.version
'2.7.5 (default, May 20 2013, 11:51:12) \n[GCC 4.7.3]'
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment