Data Analysis Using Python Notes
Data Analysis Using Python Notes
- Dict and Set Comprehension - Example: {x: x*x for x in range(3)}, {x for x in range(3)}
2. Functions
3. Exception Handling
- Else and Finally Blocks - Else runs if no error; finally runs always.