Skip to content

Instantly share code, notes, and snippets.

@poornima-maddula
Created August 16, 2019 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save poornima-maddula/43ea535d3a880d9924298718700c989e to your computer and use it in GitHub Desktop.
Save poornima-maddula/43ea535d3a880d9924298718700c989e to your computer and use it in GitHub Desktop.
Created on Cognitive Class Labs
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3 align=center>List to Set </h3>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Cast the following list to a set:"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'B', 'C', 'A'}\n"
]
}
],
"source": [
"List=['A','B','C','A','B','C']\n",
"set1=set(List)\n",
"print (set1)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3 align=center>Add an Element to the Set</h3> "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Add the string <code>'D'</code> to the set S"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"{'A', 'B', 'C', 'D'}"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"S={'A','B','C'}\n",
"S.add('D')\n",
"S"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<h3 align=center>Intersection</h3> "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Find the intersection of set <code>A</code> and <code>B</code>"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {
"collapsed": false,
"jupyter": {
"outputs_hidden": false
}
},
"outputs": [
{
"data": {
"text/plain": [
"{1, 3}"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"A={1,2,3,4,5}\n",
"B={1,3,9, 12}\n",
"A & B"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<hr>\n",
"<small>Copyright &copy; 2018 IBM Cognitive Class. This notebook and its source code are released under the terms of the [MIT License](https://cognitiveclass.ai/mit-license/).</small>"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python",
"language": "python",
"name": "conda-env-python-py"
},
"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.6.7"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment