Skip to content

Instantly share code, notes, and snippets.

@txthai
Last active July 27, 2016 06:08
Show Gist options
  • Save txthai/e518a9496a2a44ea830053122da07b10 to your computer and use it in GitHub Desktop.
Save txthai/e518a9496a2a44ea830053122da07b10 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: 3.5.2 | packaged by conda-forge | (default, Jul 7 2016, 12:51:46) \n",
"[GCC 4.8.2 20140120 (Red Hat 4.8.2-15)]\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 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.5.2"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment