RosettaCodeData/Task/Pragmatic-directives/Python/pragmatic-directives-1.py

7 lines
344 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
Python 3.2 (r32:88445, Feb 20 2011, 21:30:00) [MSC v.1500 64 bit (AMD64)] on win32
Type "copyright", "credits" or "license()" for more information.
>>> import __future__
>>> __future__.all_feature_names
['nested_scopes', 'generators', 'division', 'absolute_import', 'with_statement', 'print_function', 'unicode_literals', 'barry_as_FLUFL']
>>>