파이썬 모듈의 개념
What is a Module? Consider a module to be the same as a code library. A file containing a set of functions you want to include in your application. Create a Module To create a module just save the code you want in a file with the file extension .py: Use a Module Now we can use the module we just created, by using the import statement: Note: When using a function from a module, use the syntax: mo..
파이썬
2023. 4. 14. 20:39