Through semester 1. We learnt all about the basics of Python.
In this lesson we shall go through some of the major areas we covered.
-
Indentation: Python codeblocks are is organized using indentations. Examples of codeblocks include conditionals, loops, methods and classes.
-
Conditionals: Inadvertently you will need to take a different execution path in your code due to a factor. Python allows you to do this by use of if, elif and else constructs. See https://gist.github.com/prodeveloper/a822dea2ad427dd502553d120b2e06f2
-
Loops: What makes computers so powerful is their ability to do a task many times. Loop constructs such as while and for help us in this respect. See https://gist.github.com/prodeveloper/59c239c7885ef01c2788afd2d64ceb54




