Dictionary Comprehensions
- Refer Here for an article on dictionary comprehensions
- syntax:
dictionary = {key: value for vars in iterable}
- Refer Here for the samples done in the class
Anonymous functions: Lambda
- Lambda
- Map, Filter and Reduce functions in python
- Refer Here for some of the samples
Python Standard Library
- Refer Here for official docs.
- Refer Here for format codes
- Python date time: Python has different modules for handling datetime
- datetime
- timestamp
- dateutil
- zoneinfo
- Refer Here for the article
-
Refer Here for all timezones
-
Converting from string to date and date to string (strf)
- Refer Here for samples
