Skip to content

Commit a1d1d30

Browse files
committed
styled
1 parent c98e2d4 commit a1d1d30

File tree

1 file changed

+21
-9
lines changed

1 file changed

+21
-9
lines changed

python_for_everyone.ipynb

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"# Introduction: Python for Everyone\n",
8-
"Python for Everyon is a step by step guide to learn Python and programming in general.***Python For Everyone*** is a guide for both beginners and advanced Python developers. Welcome to *Python For Everyone*. \n",
7+
"<h1 align=\"center\" style=\"background-color:#306998;color:#FFD43B;font-size:64px;font-family:sans;padding:20px\">Python for Everyone<h1>"
8+
]
9+
},
10+
{
11+
"cell_type": "markdown",
12+
"metadata": {},
13+
"source": [
14+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\">Introduction</h1>\n",
15+
"\n",
16+
"Python for Everyon is a step by step guide to learn Python and programming in general. ***Python For Everyone*** is a guide for both beginners and advanced Python developers. Welcome to *Python For Everyone*. \n",
917
"\n",
1018
"***Congratulations*** for deciding to learn Python. Python is eating the world. It has been the choice for developers to use python for different puprpose specifically to deal with data.\n",
1119
"\n",
@@ -19,7 +27,8 @@
1927
"cell_type": "markdown",
2028
"metadata": {},
2129
"source": [
22-
"# Set up\n",
30+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\">Set up</h1>\n",
31+
"\n",
2332
"First install [Python](https://www.python.org/downloads/).\n",
2433
"To write python code, we need to have a code editor. Lets install text or code editor. There are many open source code editors which can help you to write python code. These are the most commonly used ones:\n",
2534
"- [Jupter Note book](https://www.anaconda.com/distribution/)\n",
@@ -35,7 +44,8 @@
3544
"cell_type": "markdown",
3645
"metadata": {},
3746
"source": [
38-
"# Comment in Python\n",
47+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\">Comment in Python</h1>\n",
48+
"\n",
3949
"Comment is essential to make code readable to ourselves or for others. Commented part of our code is not interperated by Python interperator."
4050
]
4151
},
@@ -64,7 +74,7 @@
6474
"cell_type": "markdown",
6575
"metadata": {},
6676
"source": [
67-
"# Printing in Python"
77+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\"> Printing in Python</h1>"
6878
]
6979
},
7080
{
@@ -117,7 +127,8 @@
117127
"cell_type": "markdown",
118128
"metadata": {},
119129
"source": [
120-
"# Variables\n",
130+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\"> Variables</h1>\n",
131+
"\n",
121132
"Variables are containers or a means to store data in computer memory. pneumonic varialbes recommend to use in many programming langauges. \n",
122133
"\n",
123134
"Valid variable names\n",
@@ -233,7 +244,8 @@
233244
"cell_type": "markdown",
234245
"metadata": {},
235246
"source": [
236-
"# Python Data types\n",
247+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\">Python Data types</h1>\n",
248+
"\n",
237249
"Different data types in python. There are different data type in python programming. To identify the data tpe we use the type method."
238250
]
239251
},
@@ -679,7 +691,7 @@
679691
"cell_type": "markdown",
680692
"metadata": {},
681693
"source": [
682-
"# Conditionals"
694+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\">Conditionals </h1>"
683695
]
684696
},
685697
{
@@ -772,7 +784,7 @@
772784
"cell_type": "markdown",
773785
"metadata": {},
774786
"source": [
775-
"# Loops"
787+
"<h1 align=\"center\" style = \"color:#306998,text-align:center\">Loops</h1>"
776788
]
777789
},
778790
{

0 commit comments

Comments
 (0)