Loops
while <expression>:
...
...
...
sequence datatypes
x = [5, 6]
- tuple
y = (5,6)
- Sequence types support slicing
start:stop:step
- set: Set is unique collection
- All sequence types are iterables, i.e. for iterabales we have one more way of looping called as foreach
- Refer Here for notebook
Exercise
- Trying fixing the errors in following programs
- Refer Here for problems to be debugged and fixed.
