Skip to content

Instantly share code, notes, and snippets.

@brianspiering
Created July 20, 2019 18:06
Show Gist options
  • Save brianspiering/4d7d3085b2848efa4496a7170b04b958 to your computer and use it in GitHub Desktop.
Save brianspiering/4d7d3085b2848efa4496a7170b04b958 to your computer and use it in GitHub Desktop.
Example syntax for nested list comprehensions
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"toc": true
},
"source": [
"<h1>Table of Contents<span class=\"tocSkip\"></span></h1>\n",
"<div class=\"toc\"><ul class=\"toc-item\"><li><span><a href=\"#Example-syntax-for-nested-list-comprehensions\" data-toc-modified-id=\"Example-syntax-for-nested-list-comprehensions-1\">Example syntax for nested list comprehensions</a></span></li><li><span><a href=\"#Nested-data\" data-toc-modified-id=\"Nested-data-2\">Nested data</a></span></li><li><span><a href=\"#List-by-list-processing-with-list-comprehension\" data-toc-modified-id=\"List-by-list-processing-with-list-comprehension-3\">List-by-list processing with list comprehension</a></span></li><li><span><a href=\"#Item-by-item-processing-with-nested-list-comprehension\" data-toc-modified-id=\"Item-by-item-processing-with-nested-list-comprehension-4\">Item-by-item processing with nested list comprehension</a></span></li><li><span><a href=\"#Further-Study\" data-toc-modified-id=\"Further-Study-5\">Further Study</a></span></li></ul></div>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Example syntax for nested list comprehensions\n",
"-----"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [],
"source": [
"reset -fs"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Nested data\n",
"----"
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[['a', 'b'], ['c', 'd'], ['e', 'f']]"
]
},
"execution_count": 18,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"letters = ['a b'.split(),\n",
" 'c d'.split(),\n",
" 'e f'.split()]\n",
"letters"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"List-by-list processing with list comprehension\n",
"----"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[['a', 'b'], ['c', 'd'], ['e', 'f']]"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[row for row in letters]"
]
},
{
"cell_type": "code",
"execution_count": 20,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[0, 1, 0]"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[row.count('d') for row in letters]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Item-by-item processing with nested list comprehension\n",
"----"
]
},
{
"cell_type": "code",
"execution_count": 21,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[['a', 'b'], ['c', 'd'], ['e', 'f']]"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[[item for item in row] for row in letters]"
]
},
{
"cell_type": "code",
"execution_count": 22,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[['A', 'B'], ['C', 'D'], ['E', 'F']]"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[[item.title() for item in row] for row in letters]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Further Study\n",
"------\n",
"\n",
"The official documentation is [here](https://docs.python.org/3/reference/expressions.html#list-displays).\n",
"\n",
"Personally, I find it hard to understand"
]
},
{
"cell_type": "markdown",
"metadata": {},
"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.7.3"
},
"toc": {
"base_numbering": 1,
"nav_menu": {},
"number_sections": false,
"sideBar": false,
"skip_h1_title": false,
"title_cell": "Table of Contents",
"title_sidebar": "Contents",
"toc_cell": true,
"toc_position": {},
"toc_section_display": true,
"toc_window_display": false
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment