Skip to content

Commit 2b97da4

Browse files
Update README.md
1 parent dc9fa8a commit 2b97da4

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

README.md

+14-9
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22
This repository contains basic programs in the python programming language.<br><br>
33
<img src="https://media3.giphy.com/media/coxQHKASG60HrHtvkt/giphy.gif?cid=790b7611dkgau1ujakt3igpplm9r0nkfvams42q5y263yifr&ep=v1_gifs_search&rid=giphy.gif&ct=g" title="Python Gif" alt="Python">
44

5-
<br>
5+
---
6+
67
<centre><h1>About Python Programming</h1></centre>
78
--> Python is a high-level, general-purpose, and very popular programming language.<br><br>
89
--> Python programming language (latest Python 3) is being used in web development, Machine Learning applications, along with all cutting-edge technology in Software Industry.
910
.<br><br>
1011
--> Python is available across widely used platforms like Windows, Linux, and macOS.<br><br>
1112
--> The biggest strength of Python is huge collection of standard library .<br>
1213

13-
<centre><h1>Modes of Executions</h1></centre>
14+
---
15+
16+
<h1>Modes of Executions</h1>
1417
Python programming language can be executed in the following two modes:
1518
<h2>1. Interactive mode</h2>
1619
<h3>a) Python Shell</h3>
@@ -27,11 +30,12 @@ Colaboratory, or “Colab” for short, is a product from Google Research which
2730
Python programs are written in editors and saved as the file with the .py extension which can be executed further. <br>
2831
<br>
2932

33+
---
34+
35+
<h1>Basic Datatypes</h1>
3036

3137
![20638Python-Data-Types](https://github.com/madhurimarawat/Python-for-Datascience/assets/105432776/62c5b8d2-21f1-4515-9b8a-8acf12ea1a58)
3238

33-
<br>
34-
<centre><h1>Basic Datatypes</h1></centre>
3539
<h2> Numbers</h2>
3640
✓ Number data type stores numerical values only.<br><br>
3741
--> It is further classified into three different types: <br>
@@ -42,20 +46,21 @@ spaces.<br><br>
4246
--> We can use single, double, or triple quotes to define a string.
4347
<h2>List</h2>
4448
✓ Lists are used when we need a simple iterable collection of data that may go for frequent modifications.<br><br>
45-
-->For example, if we store the names of students of a class in a list, then it is easy to update the list when
49+
--> For example, if we store the names of students of a class in a list, then it is easy to update the list when
4650
some new students join or some leave the course.
4751
<h2>Tuple</h2>
4852
✓ Tuples are used when we do not need any change in the data.<br><br>
49-
-->For example, names of months in a year.
53+
--> For example, names of months in a year.
5054
<h2>Sets</h2>
5155
✓ Sets are used when we need uniqueness of elements and to avoid duplicacy it is preferable to use sets.<br><br>
52-
-->For example, list of items in a museum.
56+
--> For example, list of items in a museum.
5357
<h2>Dictionary</h2>
5458
✓ Dictionaries are used if our data is being constantly modified or we need a fast lookup based on a custom
5559
key or we need a association between the key : value pair.<br><br>
56-
-->For Example, A mobile phone book is a good application of dictionary.
60+
--> For Example, A mobile phone book is a good application of dictionary.
61+
62+
---
5763

58-
<br>
5964
<h1>Libraries Used</h1>
6065
<p>Short Description about all libraries used.</p>
6166
<ul>

0 commit comments

Comments
 (0)