├── Academic Calendar 2023-24.pdf ├── Bitwise Operators.pdf ├── Built-in Functions — Python 3.11.5 documentation.pdf ├── Built-in Types — Python 3.11.5 documentation.pdf ├── Console-based Projects ├── List_Projects_Problem_Statements.txt ├── Lists Projects Solution.pdf └── test ├── Creating-a-GitHub-Account.pptx ├── Different-Types-of-Operators-in-Python.pptx ├── Different_String_functions.pdf ├── Discover-the-Power-of-Python.pptx ├── Exploring-the-Power-of-Strings.pptx ├── Format Specifiers in String Formatting.pdf ├── GitHub-The-Ultimate-Guide.pptx ├── Head-First-Python.pdf ├── LDP ├── LDP_Python.pdf └── ldp ├── Lab Exam Solutions ├── Lab_Assignment_Questions_Solution1.pdf ├── Lab_Assignment_Questions_Solution2.pdf └── testing ├── List Comprehensions.pdf ├── Lists-and-Tuples-A-Comprehensive-Guide.pptx ├── MidTerm-Prep ├── Coding Solutions.pdf ├── Python Quiz.pdf ├── QUESTIONS_midterm-30marks.md.pdf └── test ├── No.Starch.Python.Oct_.2015.ISBN_.1593276036.pdf ├── Operators — Python Reference (The Right Way) 0.1 documentation.pdf ├── Operators_Precedence.pdf ├── Python-1 Btech.pdf ├── Python-A-Comprehensive-Overview.pptx ├── Python-Control-Structures.pptx ├── Python-Installation-in-Windows.pptx ├── Python-Loops.pptx ├── Python_Data Structures.pdf ├── README.md ├── Reference Guide ├── Reference guide_Conditional statements.pdf ├── Reference guide_Python operators.pdf └── guide ├── Sample Coding Questions ├── Additional Assignments.pdf ├── Control_Structures.pdf ├── Dictionaries.pdf ├── Exception_Handling.pdf ├── File Handling.pdf ├── Functions - Part-II.pdf ├── Functions.pdf ├── Input-Output.pdf ├── Lists.pdf ├── Loops.pdf ├── Sets.pdf ├── Standard_modules.pdf ├── String Occurence.pdf ├── String_Manipulation.pdf ├── Tuples.pdf └── sample ├── Sample Questions ├── Sample Python Questions_1 ├── Sample Python Questions_1.pdf └── Sample Python Questions_2.pdf ├── Types of Errors.pdf ├── Visual Studio_keyboard-shortcuts-windows.pdf └── Visual-Studio-code-installation-in-Windows.pptx /Academic Calendar 2023-24.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Academic Calendar 2023-24.pdf -------------------------------------------------------------------------------- /Bitwise Operators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Bitwise Operators.pdf -------------------------------------------------------------------------------- /Built-in Functions — Python 3.11.5 documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Built-in Functions — Python 3.11.5 documentation.pdf -------------------------------------------------------------------------------- /Built-in Types — Python 3.11.5 documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Built-in Types — Python 3.11.5 documentation.pdf -------------------------------------------------------------------------------- /Console-based Projects/List_Projects_Problem_Statements.txt: -------------------------------------------------------------------------------- 1 | Problem Statement: Enhanced Simple Calculator with History 2 | 3 | You are tasked with creating an enhanced console-based calculator program in Python. This calculator not only performs basic arithmetic operations but also maintains a history of operations performed. 4 | 5 | Features: 6 | 7 | Addition 8 | 9 | Allow the user to add two numbers. 10 | 11 | Subtraction 12 | 13 | Allow the user to subtract one number from another. 14 | 15 | Multiplication 16 | 17 | Allow the user to multiply two numbers. 18 | 19 | Division 20 | 21 | Allow the user to divide one number by another. 22 | 23 | Display Operations 24 | 25 | Allow the user to view the history of operations performed. 26 | 27 | Quit 28 | 29 | Allow the user to exit the program. 30 | 31 | 32 | Example: 33 | 34 | ===== Enhanced Simple Calculator ===== 35 | 1. Addition 36 | 2. Subtraction 37 | 3. Multiplication 38 | 4. Division 39 | 5. Display Operations 40 | 6. Quit 41 | 42 | Enter your choice (1/2/3/4/5/6): 1 43 | Enter the first number: 10 44 | Enter the second number: 5 45 | 46 | Result: 10 + 5 = 15 47 | 48 | ===== Enhanced Simple Calculator ===== 49 | 1. Addition 50 | 2. Subtraction 51 | 3. Multiplication 52 | 4. Division 53 | 5. Display Operations 54 | 6. Quit 55 | 56 | Enter your choice (1/2/3/4/5/6): 5 57 | 58 | ===== Operations ===== 59 | 1. 10 + 5 = 15 60 | ===================== 61 | 62 | ===== Enhanced Simple Calculator ===== 63 | 1. Addition 64 | 2. Subtraction 65 | 3. Multiplication 66 | 4. Division 67 | 5. Display Operations 68 | 6. Quit 69 | 70 | Enter your choice (1/2/3/4/5/6): 2 71 | Enter the first number: 8 72 | Enter the second number: 3 73 | 74 | Result: 8 - 3 = 5 75 | 76 | ===== Enhanced Simple Calculator ===== 77 | 1. Addition 78 | 2. Subtraction 79 | 3. Multiplication 80 | 4. Division 81 | 5. Display Operations 82 | 6. Quit 83 | 84 | Enter your choice (1/2/3/4/5/6): 5 85 | 86 | ===== Operations ===== 87 | 1. 10 + 5 = 15 88 | 2. 8 - 3 = 5 89 | ===================== 90 | 91 | ... (continue using the calculator) ... 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | Problem Statement: To-Do List Application 102 | 103 | You are tasked with creating a simple To-Do List application in Python. The program should allow users to perform various operations on a list of tasks. 104 | 105 | Features: 106 | 107 | Display To-Do List 108 | 109 | When the user selects this option, the program should display the current list of tasks, along with their corresponding numbers. 110 | 111 | Add Task 112 | 113 | This option allows the user to add a new task to the To-Do list. The user will be prompted to enter the task description. 114 | 115 | Remove Task 116 | 117 | The user can choose to remove a task by entering its corresponding number. 118 | 119 | Quit 120 | 121 | This option allows the user to exit the program. 122 | 123 | 124 | Example: 125 | 126 | ===== To-Do List Application ===== 127 | 1. Display To-Do List 128 | 2. Add Task 129 | 3. Remove Task 130 | 4. Quit 131 | Enter your choice (1/2/3/4): 2 132 | Enter the task: Buy groceries 133 | 134 | 'Buy groceries' has been added to the To-Do list. 135 | 136 | ===== To-Do List Application ===== 137 | 1. Display To-Do List 138 | 2. Add Task 139 | 3. Remove Task 140 | 4. Quit 141 | Enter your choice (1/2/3/4): 1 142 | 143 | ===== To-Do List ===== 144 | 1. Buy groceries 145 | ===================== 146 | 147 | ===== To-Do List Application ===== 148 | 1. Display To-Do List 149 | 2. Add Task 150 | 3. Remove Task 151 | 4. Quit 152 | Enter your choice (1/2/3/4): 2 153 | Enter the task: Finish report 154 | 155 | 'Finish report' has been added to the To-Do list. 156 | 157 | ===== To-Do List Application ===== 158 | 1. Display To-Do List 159 | 2. Add Task 160 | 3. Remove Task 161 | 4. Quit 162 | Enter your choice (1/2/3/4): 1 163 | 164 | ===== To-Do List ===== 165 | 1. Buy groceries 166 | 2. Finish report 167 | ===================== 168 | 169 | ===== To-Do List Application ===== 170 | 1. Display To-Do List 171 | 2. Add Task 172 | 3. Remove Task 173 | 4. Quit 174 | Enter your choice (1/2/3/4): 3 175 | Enter the task number to remove: 2 176 | 177 | 'Finish report' has been removed from the To-Do list. 178 | 179 | ===== To-Do List Application ===== 180 | 1. Display To-Do List 181 | 2. Add Task 182 | 3. Remove Task 183 | 4. Quit 184 | Enter your choice (1/2/3/4): 1 185 | 186 | ===== To-Do List ===== 187 | 1. Buy groceries 188 | ===================== 189 | 190 | ===== To-Do List Application ===== 191 | 1. Display To-Do List 192 | 2. Add Task 193 | 3. Remove Task 194 | 4. Quit 195 | Enter your choice (1/2/3/4): 4 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | Problem Statement: Student Management System 204 | 205 | You are tasked with creating a console-based Student Management System in Python. 206 | This program will allow users to perform various operations related to managing student records. 207 | 208 | Features: 209 | 210 | Add Student 211 | 212 | Allow the user to add a new student to the system. The user will be prompted to enter the student's name, age, and grades. 213 | 214 | View Students 215 | 216 | Allow the user to view a list of all students along with their details. 217 | 218 | Search Student 219 | 220 | Allow the user to search for a specific student by name. If found, display their details. 221 | 222 | Remove Student 223 | 224 | Allow the user to remove a student from the system by entering their name. 225 | 226 | Quit 227 | 228 | Allow the user to exit the program. 229 | 230 | 231 | Student Details: 232 | 233 | Name: The name of the student (string). 234 | Age: The age of the student (integer). 235 | Grades: A list of grades obtained by the student (list of integers). -------------------------------------------------------------------------------- /Console-based Projects/Lists Projects Solution.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Console-based Projects/Lists Projects Solution.pdf -------------------------------------------------------------------------------- /Console-based Projects/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Creating-a-GitHub-Account.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Creating-a-GitHub-Account.pptx -------------------------------------------------------------------------------- /Different-Types-of-Operators-in-Python.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Different-Types-of-Operators-in-Python.pptx -------------------------------------------------------------------------------- /Different_String_functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Different_String_functions.pdf -------------------------------------------------------------------------------- /Discover-the-Power-of-Python.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Discover-the-Power-of-Python.pptx -------------------------------------------------------------------------------- /Exploring-the-Power-of-Strings.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Exploring-the-Power-of-Strings.pptx -------------------------------------------------------------------------------- /Format Specifiers in String Formatting.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Format Specifiers in String Formatting.pdf -------------------------------------------------------------------------------- /GitHub-The-Ultimate-Guide.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/GitHub-The-Ultimate-Guide.pptx -------------------------------------------------------------------------------- /Head-First-Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Head-First-Python.pdf -------------------------------------------------------------------------------- /LDP/LDP_Python.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/LDP/LDP_Python.pdf -------------------------------------------------------------------------------- /LDP/ldp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Lab Exam Solutions/Lab_Assignment_Questions_Solution1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Lab Exam Solutions/Lab_Assignment_Questions_Solution1.pdf -------------------------------------------------------------------------------- /Lab Exam Solutions/Lab_Assignment_Questions_Solution2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Lab Exam Solutions/Lab_Assignment_Questions_Solution2.pdf -------------------------------------------------------------------------------- /Lab Exam Solutions/testing: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /List Comprehensions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/List Comprehensions.pdf -------------------------------------------------------------------------------- /Lists-and-Tuples-A-Comprehensive-Guide.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Lists-and-Tuples-A-Comprehensive-Guide.pptx -------------------------------------------------------------------------------- /MidTerm-Prep/Coding Solutions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/MidTerm-Prep/Coding Solutions.pdf -------------------------------------------------------------------------------- /MidTerm-Prep/Python Quiz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/MidTerm-Prep/Python Quiz.pdf -------------------------------------------------------------------------------- /MidTerm-Prep/QUESTIONS_midterm-30marks.md.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/MidTerm-Prep/QUESTIONS_midterm-30marks.md.pdf -------------------------------------------------------------------------------- /MidTerm-Prep/test: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /No.Starch.Python.Oct_.2015.ISBN_.1593276036.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/No.Starch.Python.Oct_.2015.ISBN_.1593276036.pdf -------------------------------------------------------------------------------- /Operators — Python Reference (The Right Way) 0.1 documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Operators — Python Reference (The Right Way) 0.1 documentation.pdf -------------------------------------------------------------------------------- /Operators_Precedence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Operators_Precedence.pdf -------------------------------------------------------------------------------- /Python-1 Btech.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Python-1 Btech.pdf -------------------------------------------------------------------------------- /Python-A-Comprehensive-Overview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Python-A-Comprehensive-Overview.pptx -------------------------------------------------------------------------------- /Python-Control-Structures.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Python-Control-Structures.pptx -------------------------------------------------------------------------------- /Python-Installation-in-Windows.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Python-Installation-in-Windows.pptx -------------------------------------------------------------------------------- /Python-Loops.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Python-Loops.pptx -------------------------------------------------------------------------------- /Python_Data Structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Python_Data Structures.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Python-Notes 2 | This repository contains syllabus, academic calendar - 2023-24 and various notes on Python topics 3 | -------------------------------------------------------------------------------- /Reference Guide/Reference guide_Conditional statements.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Reference Guide/Reference guide_Conditional statements.pdf -------------------------------------------------------------------------------- /Reference Guide/Reference guide_Python operators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Reference Guide/Reference guide_Python operators.pdf -------------------------------------------------------------------------------- /Reference Guide/guide: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Sample Coding Questions/Additional Assignments.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Additional Assignments.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Control_Structures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Control_Structures.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Dictionaries.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Dictionaries.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Exception_Handling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Exception_Handling.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/File Handling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/File Handling.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Functions - Part-II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Functions - Part-II.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Functions.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Functions.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Input-Output.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Input-Output.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Lists.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Lists.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Loops.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Loops.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Sets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Sets.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Standard_modules.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Standard_modules.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/String Occurence.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/String Occurence.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/String_Manipulation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/String_Manipulation.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/Tuples.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Coding Questions/Tuples.pdf -------------------------------------------------------------------------------- /Sample Coding Questions/sample: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Sample Questions/Sample Python Questions_1: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Sample Questions/Sample Python Questions_1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Questions/Sample Python Questions_1.pdf -------------------------------------------------------------------------------- /Sample Questions/Sample Python Questions_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Sample Questions/Sample Python Questions_2.pdf -------------------------------------------------------------------------------- /Types of Errors.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Types of Errors.pdf -------------------------------------------------------------------------------- /Visual Studio_keyboard-shortcuts-windows.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Visual Studio_keyboard-shortcuts-windows.pdf -------------------------------------------------------------------------------- /Visual-Studio-code-installation-in-Windows.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnikGLA/Python-Notes/8943d887d70ab65c5f2c11cf658696b37e788f7b/Visual-Studio-code-installation-in-Windows.pptx --------------------------------------------------------------------------------