Jackson Chen
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.

      Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

      Explore these features while you wait
      Complete general settings
      Bookmark and like published notes
      Write a few more notes
      Complete general settings
      Write a few more notes
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note No publishing access yet

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.

    Your account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Your team account was recently created. Publishing will be available soon, allowing you to share notes on your public page and in search results.

    Explore these features while you wait
    Complete general settings
    Bookmark and like published notes
    Write a few more notes
    Complete general settings
    Write a few more notes
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Module 3 - Python Programming Fundamentals :::info Learning objectives * Classify conditions and branching by identifying structured scenarios with outputs. * Work with objects and classes. * Explain objects and classes by identifying data types and creating a class. * Use exception handling in Python. * Explain what functions do. * Build a function using inputs and outputs. * Explain how for loops and while loops work. * Work with condition statements in Python, including operators and branching. * Create and use loop statements in Python. ::: > Conditions and Branching This video introduces **conditions**, and we can use operators like **`and`** and **`or`** to make conditions more complex. > Hands-on Lab: Conditions and Branching - [Conditions and Branching](https://github.com/jacksonchen1998/IBM-PY0101EN-Python-Basics-for-Data-Science/blob/main/Module_3/conditions_in_python.ipynb) > Practice Quiz: Conditions and Branching 1. What is the outcome of the following? `1=2` :::spoiler Answer `SyntaxError:can't assign to literal` ::: 2. What is the output of the following code segment? ```python i=6 i<5 ``` :::spoiler Answer `False` ::: 3. True or False. What is the output of the below code snippet? `‘a’==‘A’` :::spoiler Answer `False` ::: 4. Which of the following best describes the purpose of ‘elif’ statement in a conditional structure? :::spoiler Answer It defines the condition in case the preceding conditions in the if statement are not fulfilled. ::: > Loops This video introduces the **`for` loop** and **`while` loop**. Different `for` loop variations can be used in different scenarios, such as: - `for a in list` – Iterates directly over elements. - `for i in range(len(list))` – Iterates using an index. - `for i, item in enumerate(list)` – Iterates with both index and value. > Practice Quiz: Loops 1. What will be the result of the following? ```python for x in range(0, 3): print(x) ``` :::spoiler Answer ``` 0 1 2 ``` ::: 2. What is the output of the following: ```python for x in ['A','B','C']: print(x+'A') ``` :::spoiler Answer ``` AA BA CA ``` ::: 3. What is the output of the following: ```python for i,x in enumerate(['A','B','C']): print(i,x) ``` :::spoiler ``` 0 A 1 B 2 C ``` ::: > Functions The video explains Python functions, covering built-in functions like `len()`, `sum()`, `sorted()`, and `.sort()`. It shows how to define custom functions using `def`, return values, and handle multiple parameters. Functions can include loops, accept variadic arguments (`*args`), and may return `None` if no return statement is provided. Variable scope is discussed, distinguishing between global and local variables. The video ends with an invitation to explore more advanced function concepts. > Hands-on Lab: Functions - [Functions](https://github.com/jacksonchen1998/IBM-PY0101EN-Python-Basics-for-Data-Science/blob/main/Module_3/exception_handling.ipynb) > Practice Quiz: Functions 1. What does the following function return: `len(['A','B',1])` ? :::spoiler Answer `3` ::: 2. What does the following function return: `len([sum([0,0,1])])` ? :::spoiler Answer `1` ::: 3. What is the value of list L after the following code segment is run? ```python L=[1,3,2] sorted(L) ``` :::spoiler Answer `[1,3,2]` ::: 4. What result does the following code produce? ```python def print_function(A): for a in A: print(a + '1') print_function(['a', 'b', 'c']) ``` :::spoiler Answer ```python a1 b1 c1 ``` ::: 5. What is the output of the following lines of code? ```python def Print(A): for a in A: print(a+'1') Print(['a','b','c']) ``` :::spoiler Answer ```python a1 b1 c1 ``` ::: > Exception Handling This video shows: - **Exception Handling** helps manage errors without crashing the program. - **try…except**: Attempts code in `try`; handles errors in `except`. - **Specific exceptions** (e.g., `IOError`) are better than generic ones. - **else** runs if no errors occur (e.g., confirm success). - **finally** always runs (e.g., close files). - Helps write more reliable and debuggable programs. **Errors** are typically caused by the environment, hardware, or operating system. **Exceptions** are usually a result of problematic code execution within the program. > Hands-On Lab: Exception Handling - [Exception Handling](https://github.com/jacksonchen1998/IBM-PY0101EN-Python-Basics-for-Data-Science/blob/main/Module_3/exception_handling.ipynb) > Practice Quiz: Exception Handling 1. Why do we use exception handlers? :::spoiler Answer To catch errors within a program. ::: 2. What is the purpose of a try…except statement? :::spoiler Answer Catch and handle exceptions when an error occurs ::: 3. Consider the following code: If the user enters the value of `b` as 0, what is expected as the output? ```py a = 1 try: b = int(input("Please enter a number to divide a")) a = a/b print("Success a=",a) except: print("There was an error") ``` :::spoiler Answer There was an error ::: > Objects and Classes This video introduces the concept of **classes and objects** in Python: - **Circle** and **Rectangle** classes are used to create objects like `RedCircle` and `BlueCircle`. - Objects have **attributes** (e.g., `radius`, `color`, `height`, `width`) and **methods** (e.g., `drawRectangle`). - Use the **`dir()`** function to view an object’s attributes and methods. - Attributes with underscores are internal; focus on regular ones. - Objects are **instances of classes**, and Python offers many features for working with them. > Hands-On Lab: Objects and Classes - [Classes and Objects](https://github.com/jacksonchen1998/IBM-PY0101EN-Python-Basics-for-Data-Science/blob/main/Module_3/classes_and_objects_in_python.ipynb) > Practice Quiz: Objects and Classes 1. Which of the following statements will create an object `C1` for the class that uses radius as 4 and color as ‘yellow’? ```py class Circle(object): # Constructor def __init__(self, radius=3, color='blue'): self.radius = radius self.color = color # Method def add_radius(self, r): self.radius = self.radius + r return self.radius ``` :::spoiler Answer ```py C1 = Circle(4, ‘yellow’) ``` ::: 2. Consider the execution of the following lines of code. ```py CircleObject = Circle() CircleObject.radius = 10 ``` What are the values of the radius and color attributes for the `CircleObject` after their execution? ```py class Circle(object): # Constructor def __init__(self, radius=3, color='blue'): self.radius = radius self.color = color # Method def add_radius(self, r): self.radius = self.radius + r return self.radius ``` :::spoiler Answer 10, 'blue' ::: 3. What is the color attribute of the object V1? ```py class Vehicle: color = "white" def __init__(self, max_speed, mileage): self.max_speed = max_speed self.mileage = mileage self.seating_capacity = None def assign_seating_capacity(self, seating_capacity): self.seating_capacity = seating_capacity V1 = Vehicle(150, 25) ``` :::spoiler Answer 'white' ::: 4. Which of the following options would create an appropriate object that points to a red, 5-seater vehicle with a maximum speed of 200kmph and a mileage of 20kmpl? ```py class Vehicle: color = "white" def __init__(self, max_speed, mileage): self.max_speed = max_speed self.mileage = mileage self.seating_capacity = None def assign_seating_capacity(self, seating_capacity): self.seating_capacity = seating_capacity V1 = Vehicle(150, 25) ``` :::spoiler Answer ```py Car = Vehicle(200,20) Car.color = ‘red’ Car.assign_seating_capacity(5) ``` ::: 5. What is the value printed upon execution of the code shown below? ```py class Graph(): def __init__(self, id): self.id = id self.id = 80 val = Graph(200) print(val.id) ``` :::spoiler Answer 80 ::: > Practice Lab: Text Analysis - [Text Analysis](https://github.com/jacksonchen1998/IBM-PY0101EN-Python-Basics-for-Data-Science/blob/main/Module_3/text_analysis.ipynb)

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password
    or
    Sign in via Facebook Sign in via X(Twitter) Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    By signing in, you agree to our terms of service.

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully