Introduction to Programming- Revision
Introduction to Programming- Revision
• https://docs.python.org/3/library/math.html
• https://docs.python.org/3/library/cmath.html
Loops
• Programming languages provide us with the concept of loops which
helps us execute some task n number of times where n can be any
whole number.
Loops
Loops: Scope of the code
• Python relies on indentation (whitespace at the beginning of a line) to
define scope in the code.
• Other programming languages often use curly-brackets for this
purpose.