본문 바로가기
Python(Eng. ver)

19. Python Module

by 곽정우 2024. 3. 20.

1. Module

To create a module in Python, simply write your code in a file with the .py extension. Modules can contain not only functions but also variables, classes, and more. You can import them into other scripts using the import statement.

2. How to use modules using Google Drive

'Python(Eng. ver)' 카테고리의 다른 글

21. Creating a vocabulary book using file input and output  (0) 2024.03.21
20. File I/O in Python  (0) 2024.03.20
18. Python Error Handling  (0) 2024.03.19
17. Special Method  (0) 2024.03.19
16. Inheritance in Python  (0) 2024.03.19