Hướng dẫn thử thách
1 / 78
Step 1
In this project, you will learn about classes and objects by building a sudoku puzzle solver.
In Python, a class is a blueprint for creating objects. Objects created from a class are instances of that class. You can create a class using this syntax:
```py
class ClassName:
pass
```
Where `class` is the keyword required to define the class and `ClassName` is the name of the class, written by convention in *PascalCase*.
Begin by creating a `Board` class.
Vượt qua bài kiểm tra hiện tại để mở khóa bài tiếp theo.
main.py
UTF-8 • Tab Size: 2Kiểm tra bài:⌘↵