top of page
Search
Hui Wang
Jan 19, 20233 min read
94. Machine learning: Python Object Oriented Programming (Part 1/4)
Object-oriented programming (OOP) is a programming paradigm that uses objects and classes to represent and manipulate data. Python...
Hui Wang
Jan 13, 20236 min read
93. Machine learning: Python Functions (Part 2/2)
1. Inner Functions An inner function is a function that is defined inside another function. The inner function can access variables and...
Hui Wang
Jan 12, 20235 min read
92. Machine learning: Python Functions (Part 1/2)
In Python, a function is a block of code that can be reused multiple times throughout a program. Functions allow you to organize your...
Hui Wang
Jan 11, 20233 min read
91. Machine learning: Python Data Structures
Python has several built-in data structures that can be used to store and manipulate different types of data. Some of the most commonly...
Hui Wang
Jan 10, 20234 min read
90. Machine learning: Control Statements in Python
Python has several types of control statements, including: 1. Conditional statements The conditional statement allows you to check...
Hui Wang
Jan 9, 20233 min read
89. Machine learning: Python Operators
Python divides the operators into the following groups: 1. Arithmetic operators Arithmetic operators perform basic math operations like...
Hui Wang
Jan 4, 20231 min read
88. Machine learning: Keywords for Python
In Python, keywords are reserved words with special meanings in the language. They cannot be used as variables, function names, or any...
Hui Wang
Jan 3, 20232 min read
87. Machine learning: Use of Jupyter Notebook
Jupyter Notebooks are a web-based interactive computing platform that allows users to combine code, text, and other media in a single...
Hui Wang
Jan 3, 20231 min read
86. Machine learning: Installing Anaconda on macOS
To install Anaconda on your Mac, follow these steps: Download the Anaconda installer from the official website:...
bottom of page