-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpython_programming.html
216 lines (193 loc) · 9.39 KB
/
python_programming.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE HTML>
<html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>22CST101: Programming with Python</title>
<meta name="author" content="22CST101: Programming with Python">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
#parent{
width: 10%;
margin: 0 auto;
}
</style>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
<link rel="icon" type="image/png" href="images/Python.jpg">
</head>
<body>
<table style="width:100%;max-width:800px;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr style="padding:0px">
<td style="padding:0px">
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr style="padding:0px">
<td style="padding:2.5%;width:63%;vertical-align:middle">
<p style="text-align:center">
<name>22CST101: Programming with Python</name>
</p>
<p style="text-align:justify;"> This course offers a comprehensive introduction to computer systems and Python programming. It begins with binary number systems and fundamental operations like addition, subtraction (2’s complement), multiplication, and bitwise shifting. The course then delves into Python, covering variables, operators, data types, and control flow with loops and conditional statements. Advanced topics include complex data types, string and list operations, and dictionary manipulation. Students will also learn about Python functions, classes, and file operations. The course culminates in a mini-project using libraries such as matplotlib and numpy, providing hands-on experience in real-world applications. </p>
<p style="text-align:justify;">
<heading>Course Instructor:</heading>
<div class="img-with-text">
<img style="width:20%;max-width:30%" src="images/sadbhawna.jpg" alt="sometext" />
<p><a href="https://sadbhawnathakur.github.io/">Sadbhawna</a></p>
<p>Contact: sadbhawnathakur [at] gmail [dot] com</p>
</div>
</p>
</td>
<td style="padding:2.5%;width:40%;max-width:40%">
<a href="images/Python.jpg"><img style="width:100%;max-width:100%" alt="profile photo" src="images/Python.jpg" class="hoverZoomLink"></a>
</td>
</tr>
</tbody></table>
<table style="width:100%;border:0px;border-spacing:0px;border-collapse:separate;margin-right:auto;margin-left:auto;"><tbody>
<tr>
<td style="padding:20px;width:100%;vertical-align:middle">
<p> <heading>Textbooks:</heading> <br>
Learning Python, Fourth Edition <br>
Published by O'Reilly Media, Inc., <br>
1005 Gravenstein Highway North, Sebastopol, CA 95472.
<br>
<br>
<br>
<heading>Lectures:</heading>
<style type="text/css">
.tg {border-collapse:collapse;border-spacing:0;}
.tg td{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
overflow:hidden;padding:10px 5px;word-break:normal;}
.tg th{border-color:black;border-style:solid;border-width:1px;font-family:Arial, sans-serif;font-size:14px;
font-weight:normal;overflow:hidden;padding:10px 5px;word-break:normal;}
.tg .tg-0lax{text-align:left;vertical-align:top}
</style>
<table class="tg">
<thead>
<tr>
<th class="tg-0lax"></th>
<th class="tg-0lax"></th>
<th class="tg-0lax">Tuesday</th>
<th class="tg-0lax"></th>
<th class="tg-0lax">Friday</th>
</tr>
</thead>
<tbody>
<tr>
<td class="tg-0lax">Week 1</td>
<td class="tg-0lax">20/08</td>
<td class="tg-0lax"> <a href="data/PP/Lecture_1_Introduction.pdf">Lecture-1 Introduction</a>     </td>
<td class="tg-0lax">22/08</td>
<td class="tg-0lax"><a href="data/PP/Lecture_2_Writing_first_code.pdf"> Lecture-2 Writing first code intro</a>     <a href="data/PP/Lecture_2_writing_first_code.ipynb.pdf"> Lecture-2 Writing first code notebook </a>     </td>
</tr>
<tr>
<td class="tg-0lax">Week 2</td>
<td class="tg-0lax">27/08</td>
<td class="tg-0lax"><a href="data/PP/Lecture_3_Numbers_and_Strings.ipynb.pdf">Lecture-3 Numbers and Strings ipynb</a>     </td>
<td class="tg-0lax">30/08</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_4_Introduction_to_datatypes-2.ipynb.pdf"> Lecture-4 Introduction to datatypes-2 ipynb </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 3</td>
<td class="tg-0lax">03/09</td>
<td class="tg-0lax"><a href="data/PP/Lecture_5_Introduction_to_datatypes-3.ipynb.pdf"> Lecture-5 Introduction to datatypes-3 ipynb </a>    </td>
<td class="tg-0lax">06/09</td>
<td class="tg-0lax"><a href="data/PP/Lecture_6_List_Comprehensions.ipynb.pdf"> Lecture-6 List Comprehensions ipynb </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 4</td>
<td class="tg-0lax">Extra Lecture-1</td>
<td class="tg-0lax"><a href="data/PP/Lecture_7_Dictionaries_in_Python.ipynb.pdf"> Lecture-7 Dictionaries in Python </a>    </td>
<td class="tg-0lax">Extra Lecture-2</td>
<td class="tg-0lax"><a href="data/PP/Lecture_8_Number_Systems.pdf"> Lecture-8 Number Systems </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 5</td>
<td class="tg-0lax">10/09</td>
<td class="tg-0lax"><a href="data/PP/Lecture_9_Addition_and_subtraction.pdf"> Lecture-9 Addition and subtraction </a>    </td>
<td class="tg-0lax">13/09</td>
<td class="tg-0lax"><a href="data/PP/Lecture_10_Multiplication_and_division.pdf"> Lecture-10 Multiplication and division </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 6</td>
<td class="tg-0lax">17/09</td>
<td class="tg-0lax"><a href="data/PP/Lecture_11_Python_variables_operators_&_condittional_blocks.pdf"> Lecture-11 Python variables operators & condittional blocks </a>    </td>
<td class="tg-0lax">20/09</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_12_For_loop_while_and_manipulation.pdf"> Lecture-12 For loop, while and manipulation </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 7</td>
<td class="tg-0lax">24/09</td>
<td class="tg-0lax">***Mid-sem exams***   </td>
<td class="tg-0lax">27/09</td>
<td class="tg-0lax">***Mid-sem exams***   </td>
</tr>
<tr>
<td class="tg-0lax">Week 8</td>
<td class="tg-0lax">01/10</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_13_while_for_loop_cont.pdf"> Lecture-13 while for loop cont. </a>    </td>
<td class="tg-0lax">04/10</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_14_Iterations_and_comprehensions.pdf"> Lecture-14 Iterations and comprehensions </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 9</td>
<td class="tg-0lax">08/10</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_15_New_iterables_in_python.pdf"> Lecture-15 New iterables in python </a>    </td>
<td class="tg-0lax">11/10</td>
<td class="tg-0lax">***Holiday***    </td>
</tr>
<tr>
<td class="tg-0lax">Week 10</td>
<td class="tg-0lax">15/10</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_16_Functions.pdf"> Lecture-16 Functions </a>    </td>
<td class="tg-0lax">19/10</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_17_Function_Scopes.pdf"> Lecture-17 Function Scopes </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 11</td>
<td class="tg-0lax">22/10</td>
<td class="tg-0lax"> Lecture-18 Expert Lecture: Sonam Gupta, IBM Research    </td>
<td class="tg-0lax">25/10</td>
<td class="tg-0lax"> Lecture-19 Expert Lecture: Sonam Gupta, IBM Research    </td>
</tr>
<tr>
<td class="tg-0lax">Week 12</td>
<td class="tg-0lax">05/11</td>
<td class="tg-0lax">***Holiday***    </td>
<td class="tg-0lax">08/11</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_20_Python_Libraries-1.ipynb.pdf"> Lecture-20 Python Libraries-1 </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 13</td>
<td class="tg-0lax">12/11</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_21_Python_Libraries-2.ipynb.pdf"> Lecture-21 Python Libraries-2 </a>    </td>
<td class="tg-0lax">15/11</td>
<td class="tg-0lax"> <a href= "data/PP/Lecture_22_Python_Classes_and_Objects.ipynb.pdf"> Lecture-22 Python Classes and Objects </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 14</td>
<td class="tg-0lax">19/11</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_23_PP_mini-project.ipynb.pdf"> Lecture-23 PP mini-project </a>    </td>
<td class="tg-0lax">22/11</td>
<td class="tg-0lax"><a href= "data/PP/Lecture_24_PP_mini-project_cont.ipynb.pdf"> Lecture-24 PP mini-project_cont </a>    </td>
</tr>
<tr>
<td class="tg-0lax">Week 15</td>
<td class="tg-0lax">26/11</td>
<td class="tg-0lax"> ***End-sem exams***   </td>
<td class="tg-0lax">29/11</td>
<td class="tg-0lax">***End-sem exams***   </td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody></table>
<br>
<p style="text-align:center;font-size:small;">
</p>
<p style="text-align:center;font-size:small;">
Last updated on July 22, 2024
</p>
</td>
</tr>
</tbody></table>
</td>
</tr>
</table>
</body>
</html>