Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit ad8c3d5

Browse files
Updates and fixes
1 parent d2dcb73 commit ad8c3d5

File tree

10 files changed

+77
-46
lines changed

10 files changed

+77
-46
lines changed

‎.ipynb_checkpoints/README-checkpoint.md

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,25 @@ For missing content, refer [Official Documentation](https://docs.python.org/)
77
For some short snippets in python, visit [30 seconds of code - python](https://www.30secondsofcode.org/python/p/1)
88
For short notes refer, [Cheat Sheet](Cheat_sheet.pdf)
99

10+
Books:
11+
12+
1. A Byte of Python by Swaroopch
13+
[Read Online](https://python.swaroopch.com)
14+
[Download PDF or EPUB](https://github.com/swaroopch/byte-of-python/releases/latest)
15+
[Purchase](https://swaroopch.com/buybook)
16+
17+
2. Automate the Boring Stuff with Python by Al Sweigart
18+
[Read Online](https://automatetheboringstuff.com/2e/)
19+
[Purchase](https://www.amazon.in/Automate-Boring-Stuff-Python-2nd/dp/1593279922/ref=sr_1_3?crid=P8EQ7A13BCC7&dchild=1&keywords=automate+the+boring+stuff+with+python&qid=1622629604&sprefix=Automate+the+boring+%2Caps%2C317&sr=8-3)
20+
21+
3. Beyond the Basic Stuff with Python by Al Sweigart
22+
[Read Online](https://inventwithpython.com/beyond/)
23+
[Purchase](https://www.amazon.in/Python-Beyond-Basics-Al-Sweigart/dp/1593279663/ref=sr_1_3?crid=3R7C1Q4GPS9WB&dchild=1&keywords=beyond+the+basic+stuff+with+python&qid=1622629740&sprefix=Beyond+the+basic+stuff+with+%2Caps%2C322&sr=8-3)
24+
25+
Read the notes using [GitHub pages](https://aniruddh-0701.github.io/Python_Programming_Notes/)
26+
1027
### Sequence of notes:
11-
All the outputs are to be tested by using print statement. If print statements are not given, please use print statement in your code(s).
28+
All the outputs are to be tested by using print statement. In the notes shared, if only names of variables/functions are given, please use print statement(s) in your code to get the output.
1229

1330
<ol>
1431
<li> <a href = 'Installing_and_Using_Python.md'>Installing and Using Python</a> </li>
@@ -21,14 +38,15 @@ All the outputs are to be tested by using print statement. If print statements a
2138
<li> <a href = 'DS_Tuples.ipynb'> Data Structures - Tuples</a></li>
2239
<li> <a href = 'DS_Dictionaries.ipynb'>Data Structures - Dictionaries</a></li>
2340
<li> <a href = 'DS_Sets.ipynb'>Data Structres - Sets</a></li>
41+
<li><a href = 'Errors_and_Exception_Handling.ipynb'> Errors and Exception Handling </a></li>
2442
<li> <a href = 'Modules_and_Packages.ipynb'>Modules and Packages </a></li>
2543
<li>File Handling</li>
2644
<li><a href = 'Advanced_IO.ipynb'> Advanced I/O </a></li>
27-
<li>Errors and Exception Handling</li>
2845
<li> <a href = 'Generators.ipynb'> Python Generators </a> </li>
2946
<li>Python Iterators</li>
3047
<li>Numbers in Programming</li>
31-
<li><a href='OOPS.ipynb'>Object Oriented Programming in Python</a></li>
48+
<li><a href='OOPS.ipynb'>Object Oriented Programming in Python - Part I</a></li>
49+
<li>Object Oriented Programming in Python - Part II</li>
3250
<li> Regular Expressions in Python</li>
3351
</ol>
3452

@@ -38,4 +56,4 @@ All the outputs are to be tested by using print statement. If print statements a
3856
3. [Code Practice 3](Practice_code3.md); [Code Practice 3 Solution](Solution3.ipynb)
3957
4. [Code Practice 4](Practice_code4.md); [Code Practice 4 Solution](Solution4.ipynb)
4058
5. [Code Practice 5](Practice_code5.md); [Code Practice 5 Solution](Solution5.ipynb )
41-
6. [Code Practice 6](Practice_code6.md)
59+
6. [Code Practice 6](Practice_code6.md)

‎README.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,26 @@ For missing content, refer [Official Documentation](https://docs.python.org/)
77
For some short snippets in python, visit [30 seconds of code - python](https://www.30secondsofcode.org/python/p/1)
88
For short notes refer, [Cheat Sheet](Cheat_sheet.pdf)
99

10-
Books:
10+
Books:
1111

1212
1. A Byte of Python by Swaroopch
13-
[Read Online](https://python.swaroopch.com)
14-
[Download PDF or EPUB](https://github.com/swaroopch/byte-of-python/releases/latest)
15-
[Purchase](https://swaroopch.com/buybook)
13+
[Read Online](https://python.swaroopch.com)
14+
[Download PDF or EPUB](https://github.com/swaroopch/byte-of-python/releases/latest)
15+
[Purchase](https://swaroopch.com/buybook)
1616

1717
2. Automate the Boring Stuff with Python by Al Sweigart
18-
[Read Online](https://automatetheboringstuff.com/2e/)
19-
[Purchase](https://www.amazon.in/Automate-Boring-Stuff-Python-2nd/dp/1593279922/ref=sr_1_3?crid=P8EQ7A13BCC7&dchild=1&keywords=automate+the+boring+stuff+with+python&qid=1622629604&sprefix=Automate+the+boring+%2Caps%2C317&sr=8-3)
18+
[Read Online](https://automatetheboringstuff.com/2e/)
19+
[Purchase](https://www.amazon.in/Automate-Boring-Stuff-Python-2nd/dp/1593279922/ref=sr_1_3?crid=P8EQ7A13BCC7&dchild=1&keywords=automate+the+boring+stuff+with+python&qid=1622629604&sprefix=Automate+the+boring+%2Caps%2C317&sr=8-3)
2020

2121
3. Beyond the Basic Stuff with Python by Al Sweigart
22-
[Read Online](https://inventwithpython.com/beyond/)
23-
[Purchase](https://www.amazon.in/Python-Beyond-Basics-Al-Sweigart/dp/1593279663/ref=sr_1_3?crid=3R7C1Q4GPS9WB&dchild=1&keywords=beyond+the+basic+stuff+with+python&qid=1622629740&sprefix=Beyond+the+basic+stuff+with+%2Caps%2C322&sr=8-3)
22+
[Read Online](https://inventwithpython.com/beyond/)
23+
[Purchase](https://www.amazon.in/Python-Beyond-Basics-Al-Sweigart/dp/1593279663/ref=sr_1_3?crid=3R7C1Q4GPS9WB&dchild=1&keywords=beyond+the+basic+stuff+with+python&qid=1622629740&sprefix=Beyond+the+basic+stuff+with+%2Caps%2C322&sr=8-3)
2424

2525
Read the notes using [GitHub pages](https://aniruddh-0701.github.io/Python_Programming_Notes/)
2626

2727
### Sequence of notes:
28-
All the outputs are to be tested by using print statement. In the notes shared, if only names of variables/functions are given, please use print statement(s) in your code to get the output.
28+
29+
All the outputs are to be tested by using print statement. In the notes shared, if only names of variables/functions are given, please use print statement(s) in your code to get the output.
2930

3031
<ol>
3132
<li> <a href = 'Installing_and_Using_Python.md'>Installing and Using Python</a> </li>
@@ -34,25 +35,27 @@ All the outputs are to be tested by using print statement. In the notes shared,
3435
<li> <a href = 'Looping_Statements.ipynb'>Looping statements in Python</a></li>
3536
<li> <a href = 'Functions.ipynb'> Functions in Python</a> </li>
3637
<li> <a href = 'DS_Lists.ipynb'> Data Structures - Lists </a> </li>
37-
<li> <a href = 'DS_Strings.ipynb'> Data Stuctures - String </a> </li>
38+
<li> <a href = 'DS_Strings.ipynb'> Data Structures - String </a> </li>
3839
<li> <a href = 'DS_Tuples.ipynb'> Data Structures - Tuples</a></li>
3940
<li> <a href = 'DS_Dictionaries.ipynb'>Data Structures - Dictionaries</a></li>
40-
<li> <a href = 'DS_Sets.ipynb'>Data Structres - Sets</a></li>
41+
<li> <a href = 'DS_Sets.ipynb'>Data Structures - Sets</a></li>
42+
<li><a href = 'Errors_and_Exception_Handling.ipynb'> Errors and Exception Handling </a></li>
4143
<li> <a href = 'Modules_and_Packages.ipynb'>Modules and Packages </a></li>
4244
<li>File Handling</li>
4345
<li><a href = 'Advanced_IO.ipynb'> Advanced I/O </a></li>
44-
<li><a href = 'Errors_and_Exception_Handling.ipynb'> Errors and Exception Handling </a></li>
4546
<li> <a href = 'Generators.ipynb'> Python Generators </a> </li>
4647
<li>Python Iterators</li>
4748
<li>Numbers in Programming</li>
48-
<li><a href='OOPS.ipynb'>Object Oriented Programming in Python</a></li>
49+
<li><a href='OOPS.ipynb'>Object Oriented Programming in Python - Part I</a></li>
50+
<li>Object Oriented Programming in Python - Part II</li>
4951
<li> Regular Expressions in Python</li>
5052
</ol>
5153

5254
### Test questions:
55+
5356
1. [Code Practice 1](Practice_code1.ipynb); [Code Practice 1 Solution](Solution1.ipynb)
5457
2. [Code Practice 2](Practice_code2.md); [Code Practice 2 Solution](Solution2.ipynb)
5558
3. [Code Practice 3](Practice_code3.md); [Code Practice 3 Solution](Solution3.ipynb)
5659
4. [Code Practice 4](Practice_code4.md); [Code Practice 4 Solution](Solution4.ipynb)
57-
5. [Code Practice 5](Practice_code5.md); [Code Practice 5 Solution](Solution5.ipynb)
60+
5. [Code Practice 5](Practice_code5.md); [Code Practice 5 Solution](Solution5.ipynb)
5861
6. [Code Practice 6](Practice_code6.md)

‎docs/Practice_code1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Basic python concepts practice questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

‎docs/Practice_code2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Conditional Statements Practice Questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

‎docs/Practice_code3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Loops practice Questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

‎docs/Practice_code4.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Functions Practice Questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

‎docs/Practice_code5.html

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Lists Practice Questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

@@ -52,7 +52,8 @@
5252
O/p: [10 20 -2 40]</p>
5353
</blockquote>
5454
<p><strong>Q4:</strong> Write a program to get a list of integers and print their product as output. (Use
55-
<em>reduce</em> method).</p>
55+
<em>reduce</em> method).
56+
</p>
5657
<blockquote>
5758
<p>Sample 1:<br />
5859
I/P: 10 20 5 41 -2 -7 23<br />
@@ -86,7 +87,8 @@
8687
O/P: 12.857 </p>
8788
</blockquote>
8889
<p><strong>Q9:</strong> Write a program to get a list of integers and print the maximum value as output. (Use
89-
<em>max</em> method).</p>
90+
<em>max</em> method).
91+
</p>
9092
<blockquote>
9193
<p>Sample 1:<br />
9294
I/P: 10 20 5 41 -2 -7 23<br />
@@ -100,7 +102,8 @@
100102
O/P: 41 </p>
101103
</blockquote>
102104
<p><strong>Q11:</strong> Write a program to get a list of integers and print the minimum value as output. (Use
103-
<em>min</em> method).</p>
105+
<em>min</em> method).
106+
</p>
104107
<blockquote>
105108
<p>Sample 1:<br />
106109
I/P: 10 20 5 41 -2 -7 23<br />
@@ -114,7 +117,8 @@
114117
O/P: -7 </p>
115118
</blockquote>
116119
<p><strong>Q13:</strong> Write a program to get a number <strong><em>n</em></strong> and print first
117-
<strong><em>n</em></strong> terms of Fibonacci series.</p>
120+
<strong><em>n</em></strong> terms of Fibonacci series.
121+
</p>
118122
<p><strong>Q14:</strong> Write a program to get a list of string values as input and print the values at even
119123
position as output.</p>
120124
<blockquote>
@@ -172,7 +176,8 @@
172176
</blockquote>
173177
<p><strong>Q19:</strong> Write a program to get number of rows <strong><em>r</em></strong> and columns
174178
<strong><em>c</em></strong> and two <em>rxc</em> matrices and print their sum as output.<br />
175-
(No empty lines are provided in between the matrices) </p>
179+
(No empty lines are provided in between the matrices)
180+
</p>
176181
<blockquote>
177182
<p>Sample 1:<br />
178183
4<br>
@@ -193,7 +198,8 @@
193198
</blockquote>
194199
<p><strong>Q20:</strong> Write a program to get number of rows <strong><em>r</em></strong> and no. of columns
195200
<strong><em>c</em></strong> and three <em>rxc</em> matrices and print their sum as output.<br />
196-
(No empty lines are provided in between the matrices) </p>
201+
(No empty lines are provided in between the matrices)
202+
</p>
197203
<blockquote>
198204
<p>Sample 1:<br />
199205
4<br>

‎docs/Practice_code6.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Strings Practice Questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

@@ -31,7 +31,8 @@
3131
<p><strong>Q5:</strong> Write a program to get a string and print digits in them as output.</p>
3232
<p><strong>Q6:</strong> Write a program to get a string <strong><em>s</em></strong> and a substring
3333
<strong><em>x</em></strong> and print if the <strong><em>x</em></strong> is present in
34-
<strong><em>s</em></strong> as output.</p>
34+
<strong><em>s</em></strong> as output.
35+
</p>
3536
<p><strong>Q7:</strong> Write a program to get a string and set the first letter of all the words in the string to
3637
upper case and print the modified string as output.</p>
3738
<p><strong>Q8</strong>: Write a program to get a name from the user and print if it is a valid name as output.<br />

‎docs/Practice_code7.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<meta charset="utf-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0">
77

8-
<title>Practice_code1</title>
8+
<title>Tuples Practice questions</title>
99
<script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.1.10/require.min.js"></script>
1010

1111

‎docs/README.md

Lines changed: 17 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,24 @@ For missing content, refer [Official Documentation](https://docs.python.org/)
77
For some short snippets in python, visit [30 seconds of code - python](https://www.30secondsofcode.org/python/p/1)
88
For short notes refer, [Cheat Sheet](Cheat_sheet.pdf)
99

10-
Books:
10+
Books:
1111

1212
1. A Byte of Python - Swaroopch
13-
[Read Online](https://python.swaroopch.com)
14-
[Download PDF or EPUB](https://github.com/swaroopch/byte-of-python/releases/latest)
15-
[Purchase](https://swaroopch.com/buybook)
13+
[Read Online](https://python.swaroopch.com)
14+
[Download PDF or EPUB](https://github.com/swaroopch/byte-of-python/releases/latest)
15+
[Purchase](https://swaroopch.com/buybook)
1616

1717
2. Automate the Boring Stuff with Python by Al Sweigart
18-
[Read Online](https://automatetheboringstuff.com/2e/)
19-
[Purchase](https://www.amazon.in/Automate-Boring-Stuff-Python-2nd/dp/1593279922/ref=sr_1_3?crid=P8EQ7A13BCC7&dchild=1&keywords=automate+the+boring+stuff+with+python&qid=1622629604&sprefix=Automate+the+boring+%2Caps%2C317&sr=8-3)
18+
[Read Online](https://automatetheboringstuff.com/2e/)
19+
[Purchase](https://www.amazon.in/Automate-Boring-Stuff-Python-2nd/dp/1593279922/ref=sr_1_3?crid=P8EQ7A13BCC7&dchild=1&keywords=automate+the+boring+stuff+with+python&qid=1622629604&sprefix=Automate+the+boring+%2Caps%2C317&sr=8-3)
2020

2121
3. Beyond the Basic Stuff with Python by Al Sweigart
22-
[Read Online](https://inventwithpython.com/beyond/)
23-
[Purchase](https://www.amazon.in/Python-Beyond-Basics-Al-Sweigart/dp/1593279663/ref=sr_1_3?crid=3R7C1Q4GPS9WB&dchild=1&keywords=beyond+the+basic+stuff+with+python&qid=1622629740&sprefix=Beyond+the+basic+stuff+with+%2Caps%2C322&sr=8-3)
22+
[Read Online](https://inventwithpython.com/beyond/)
23+
[Purchase](https://www.amazon.in/Python-Beyond-Basics-Al-Sweigart/dp/1593279663/ref=sr_1_3?crid=3R7C1Q4GPS9WB&dchild=1&keywords=beyond+the+basic+stuff+with+python&qid=1622629740&sprefix=Beyond+the+basic+stuff+with+%2Caps%2C322&sr=8-3)
2424

2525
### Sequence of notes:
26-
All the outputs are to be tested by using print statement. In the notes shared, if only names of variables/functions are given, please use print statement(s) in your code to get the output.
26+
27+
All the outputs are to be tested by using print statement. In the notes shared, if only names of variables/functions are given, please use print statement(s) in your code to get the output.
2728

2829
<ol>
2930
<li> <a href = 'Installing_and_Using_Python.html'>Installing and Using Python</a> </li>
@@ -32,25 +33,27 @@ All the outputs are to be tested by using print statement. In the notes shared,
3233
<li> <a href = 'Looping_Statements.html'>Looping statements in Python</a></li>
3334
<li> <a href = 'Functions.html'> Functions in Python</a> </li>
3435
<li> <a href = 'DS_Lists.html'> Data Structures - Lists </a> </li>
35-
<li> <a href = 'DS_Strings.html'> Data Stuctures - String </a> </li>
36+
<li> <a href = 'DS_Strings.html'> Data Structures - String </a> </li>
3637
<li> <a href = 'DS_Tuples.html'> Data Structures - Tuples</a></li>
3738
<li> <a href = 'DS_Dictionaries.html'>Data Structures - Dictionaries</a></li>
38-
<li> <a href = 'DS_Sets.html'>Data Structres - Sets</a></li>
39+
<li> <a href = 'DS_Sets.html'>Data Structures - Sets</a></li>
40+
<li><a href = 'Errors_and_Exception_Handling.html'> Errors and Exception Handling </a></li>
3941
<li> <a href = 'Modules_and_Packages.html'>Modules and Packages </a></li>
4042
<li>File Handling</li>
4143
<li><a href = 'Advanced_IO.html'> Advanced I/O </a></li>
42-
<li><a href = 'Errors_and_Exception_Handling.html'> Errors and Exception Handling </a></li>
4344
<li> <a href = 'Generators.html'> Python Generators </a> </li>
4445
<li>Python Iterators</li>
4546
<li>Numbers in Programming</li>
46-
<li><a href='OOPS.html'>Object Oriented Programming in Python</a></li>
47+
<li><a href='OOPS.html'>Object Oriented Programming in Python - Part I</a></li>
48+
<li> Object Oriented Programming in Python - Part II </li>
4749
<li> Regular Expressions in Python</li>
4850
</ol>
4951

5052
### Test questions:
53+
5154
1. [Code Practice 1](Practice_code1.html); [Code Practice 1 Solution](Solution1.html)
5255
2. [Code Practice 2](Practice_code2.html); [Code Practice 2 Solution](Solution2.html)
5356
3. [Code Practice 3](Practice_code3.html); [Code Practice 3 Solution](Solution3.html)
5457
4. [Code Practice 4](Practice_code4.html); [Code Practice 4 Solution](Solution4.html)
55-
5. [Code Practice 5](Practice_code5.html); [Code Practice 5 Solution](Solution5.html)
58+
5. [Code Practice 5](Practice_code5.html); [Code Practice 5 Solution](Solution5.html)
5659
6. [Code Practice 6](Practice_code6.html)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /