Skip to content

Instantly share code, notes, and snippets.

@AIgbine
Created December 1, 2020 15:50
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 AIgbine/6e16a719a8f28bd01973c8706994648b to your computer and use it in GitHub Desktop.
Save AIgbine/6e16a719a8f28bd01973c8706994648b 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": {},
"outputs": [],
"source": [
"#Defining a string, can use double or single quotes\n",
"s = 'Hello good morning, happy to meet you'"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['Hello', 'good', 'morning,', 'happy', 'to', 'meet', 'you']"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#Splitting a string into a list\n",
"s_list = s.split()\n",
"s_list"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'Hello good morning, happy to meet you'"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#Forming a string from a list\n",
"new_s = \" \".join(s_list)\n",
"new_s"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'Hello good morning happy to meet you'"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"#replace old value with new value\n",
"new_s.replace(',', \" \")"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"#Using string.punctuations\n",
"sentence = \"Oh Hello! I didn't see you there. What's your name?%&\""
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"'Oh Hello I didnt see you there Whats your name'"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import string\n",
"\n",
"no_punc = \"\"\n",
"for word in sentence:\n",
" if word not in string.punctuation:\n",
" no_punc += word\n",
" \n",
"no_punc"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"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.8.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment