https://github.com/ggotora/python-with-udacity
https://github.com/ggotora/python-with-udacity
lamba python python3
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ggotora/python-with-udacity
- Owner: ggotora
- Created: 2020-06-15T12:14:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-15T16:21:21.000Z (about 6 years ago)
- Last Synced: 2025-10-09T03:42:16.754Z (8 months ago)
- Topics: lamba, python, python3
- Language: Jupyter Notebook
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# python-with-udacity
## Introduction to Python programming
These are my personal notes from the Udacity Course on Python 3
### Topics include
#### 1. Data Structures and Operators
- data types and operators
- variables
- strings and string methods
-
#### 2. Data Structures
- lists and list methods
- tuples and method
- tuple unpacking
- sets
- add and pop
- dictionaries
- get() method
- identity operators
#### 3. Control Flow
- for loops
- word count with loops and dictionaries
- key and values using items()
- while loops
- break and continue
- zip and enumerate
- list comprehension
#### 4. Functions
- variable scope
- documentation
- lambda expressions
- lambda with map()
- lambda with filter()
#### 5. Scripting
- raw input
- errors and exceptions
- exception handling
- reading and writing files
- importing modules
- The Standard library
#### 6. Iterators and Generators