Part 1 - An introduction1.1Course introductionThis article describes what this course will cover.Part 2 - Getting started2.1Getting started with PythonThis article will show you how to get started with Python.2.2Comments in PythonThis article discusses comments in Python.2.3Input and output in PythonThis article discusses how to receive inputs and produce outputs in Python.Part 3 - The basics3.1Procedures in PythonThis article will show you how to create and use procedures in Python to make your program more modular.3.2Variables in PythonThis article will introduce variables and explain how they work and how to use them.3.3Arrays and lists in PythonThis article will discuss arrays and lists for storing multiple items in one list.3.4Strings in PythonThis article in this tutorial will discuss string operations.3.5Operators & mathematics in PythonThis article in this tutorial discuss how mathematics works in Python.3.6Reading and writing files in PythonThis article in this tutorial discuss how to work with files, both in terms of reading and writing to and from them.Part 4 - Controlling the flow of a program4.1Conditions in PythonConditions are a set of rules or requirements that must be met to satisfy it. They are the basis of most kinds of flow control.4.2If statementsIf statements are one of the most important methods of flow control. This article will describe how they work.4.3LoopsAnother control flow structure is the loop. Most programming languages, including Python feature loops. This article will cover loops in Python.4.4Error handling in PythonAn error control flow structure in Python allows errors to be handled differently. This article will discuss these.Part 5 - Object-oriented Python5.1Classes in PythonClasses allow us to delegate and separate different logical parts of a Python program and also allow us to simulate real-life objects or people.AllcoursesComments Please enable JavaScript to view the comments powered by Disqus.