CO2412 Computational Thinking Contents
Lecture 0 - What is Computational Thinking
Lecture 1 - Introduction to Python Programming Language.pdf
Introduction To Python Programming LanguageΒΆ
Python DataTypesΒΆ
Data Type | Python DataType |
---|---|
Text | str |
Numeric | int, float, complex |
Sequence | list, tuple, range |
Map | dict |
Set | set, frozenset |
Boolean | bool |
binary | bytes, bytearray, memoryview |
None | NoneType |
## Python Operators | |
Operator | Name |
:------: | :------------------: |
& | AND |
| | OR |
^ | XOR |
~ | NOT |
<< | Zero Fill Left Shift |
>> | Signed Right Shift |
Lecture 2 - Decomposition, Functions, and Recursion |