diff --git a/README.md b/README.md index 42903d5..05de8e6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -### A collection of useful scripts, tutorials, and other Python-related things +
@@ -12,8 +12,8 @@
- [// Plotting and Visualization](#-plotting-and-visualization)
- [// Benchmarks](#-benchmarks)
- [// Python and "Data Science"](#-python-and-data-science)
-- [// Other](#-other)
- [// Useful scripts and snippets](#-useful-scripts-and-snippets)
+- [// Other](#-other)
- [// Links](#-links)
@@ -21,8 +21,7 @@
-###// Python tips and tutorials
-[[back to top](#a-collection-of-useful-scripts-tutorials-and-other-python-related-things)]
+Python tips and tutorials [back to top]
- A collection of not so obvious Python stuff you should know! [[IPython nb](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/not_so_obvious_python_stuff.ipynb?create=1)]
@@ -36,7 +35,6 @@
- Installing Scientific Packages for Python3 on MacOS 10.9 Mavericks [[Markdown](./tutorials/installing_scientific_packages.md)]
-
- Sorting CSV files using the Python csv module [[IPython nb](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/sorting_csvs.ipynb)]
- Using Cython with and without IPython magic [[IPython nb](http://nbviewer.ipython.org/github/rasbt/python_reference/blob/master/tutorials/running_cython.ipynb)]
@@ -60,35 +58,31 @@
| feature | \n", - "optional in | \n", - "mandatory in | \n", - "effect | \n", - "
|---|---|---|---|
| nested_scopes | \n", - "2.1.0b1 | \n", - "2.2 | \n", - "PEP 227:\n", - "Statically Nested Scopes | \n", - "
| generators | \n", - "2.2.0a1 | \n", - "2.3 | \n", - "PEP 255:\n", - "Simple Generators | \n", - "
| division | \n", - "2.2.0a2 | \n", - "3.0 | \n", - "PEP 238:\n", - "Changing the Division Operator | \n", - "
| absolute_import | \n", - "2.5.0a1 | \n", - "3.0 | \n", - "PEP 328:\n", - "Imports: Multi-Line and Absolute/Relative | \n", - "
| with_statement | \n", - "2.5.0a1 | \n", - "2.6 | \n", - "PEP 343:\n", - "The “with” Statement | \n", - "
| print_function | \n", - "2.6.0a2 | \n", - "3.0 | \n", - "PEP 3105:\n", - "Make print a function | \n", - "
| unicode_literals | \n", - "2.6.0a2 | \n", - "3.0 | \n", - "PEP 3112:\n", - "Bytes literals in Python 3000 | \n", - "
| feature | \n", + "optional in | \n", + "mandatory in | \n", + "effect | \n", + "
|---|---|---|---|
| nested_scopes | \n", + "2.1.0b1 | \n", + "2.2 | \n", + "PEP 227:\n", + "Statically Nested Scopes | \n", + "
| generators | \n", + "2.2.0a1 | \n", + "2.3 | \n", + "PEP 255:\n", + "Simple Generators | \n", + "
| division | \n", + "2.2.0a2 | \n", + "3.0 | \n", + "PEP 238:\n", + "Changing the Division Operator | \n", + "
| absolute_import | \n", + "2.5.0a1 | \n", + "3.0 | \n", + "PEP 328:\n", + "Imports: Multi-Line and Absolute/Relative | \n", + "
| with_statement | \n", + "2.5.0a1 | \n", + "2.6 | \n", + "PEP 343:\n", + "The “with” Statement | \n", + "
| print_function | \n", + "2.6.0a2 | \n", + "3.0 | \n", + "PEP 3105:\n", + "Make print a function | \n", + "
| unicode_literals | \n", + "2.6.0a2 | \n", + "3.0 | \n", + "PEP 3112:\n", + "Bytes literals in Python 3000 | \n", + "
Python 2.7.6 \n", - "[GCC 4.0.1 (Apple Inc. build 5493)] on darwin\n", - "Type "help", "copyright", "credits" or "license" for more information.\n", - "\n", - ">>> my_input = input('enter a number: ')\n", - "\n", - "enter a number: 123\n", - "\n", - ">>> type(my_input)\n", - "<type 'int'>\n", - "\n", - ">>> my_input = raw_input('enter a number: ')\n", - "\n", - "enter a number: 123\n", - "\n", - ">>> type(my_input)\n", - "<type 'str'>\n", - "
Python 3.4.1 \n", - "[GCC 4.2.1 (Apple Inc. build 5577)] on darwin\n", - "Type "help", "copyright", "credits" or "license" for more information.\n", - "\n", - ">>> my_input = input('enter a number: ')\n", - "\n", - "enter a number: 123\n", - "\n", - ">>> type(my_input)\n", - "<class 'str'>\n", - "
Python 2.7.6 \n", + "[GCC 4.0.1 (Apple Inc. build 5493)] on darwin\n", + "Type "help", "copyright", "credits" or "license" for more information.\n", + "\n", + ">>> my_input = input('enter a number: ')\n", + "\n", + "enter a number: 123\n", + "\n", + ">>> type(my_input)\n", + "<type 'int'>\n", + "\n", + ">>> my_input = raw_input('enter a number: ')\n", + "\n", + "enter a number: 123\n", + "\n", + ">>> type(my_input)\n", + "<type 'str'>\n", + "
Python 3.4.1 \n", + "[GCC 4.2.1 (Apple Inc. build 5577)] on darwin\n", + "Type "help", "copyright", "credits" or "license" for more information.\n", + "\n", + ">>> my_input = input('enter a number: ')\n", + "\n", + "enter a number: 123\n", + "\n", + ">>> type(my_input)\n", + "<class 'str'>\n", + "