Skip to content

Instantly share code, notes, and snippets.

@txthai
Last active July 27, 2016 06:08
Show Gist options
  • Save txthai/be358a37d5b5a8c5a2e65573cd6afac9 to your computer and use it in GitHub Desktop.
Save txthai/be358a37d5b5a8c5a2e65573cd6afac9 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Python version: 2.7.12 |Continuum Analytics, Inc.| (default, Jul 2 2016, 17:42:40) \n",
"[GCC 4.4.7 20120313 (Red Hat 4.4.7-1)]\n"
]
}
],
"source": [
"import sys\n",
"print 'Python version: ', sys.version"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {
"collapsed": false
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Pandas version: 0.18.1\n"
]
}
],
"source": [
"import pandas as pd\n",
"print 'Pandas version: ', pd.__version__"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 2",
"language": "python",
"name": "python2"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 2
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython2",
"version": "2.7.12"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment