OOP Introduction
Object Oriented Programming
class apple
instance
Copy, Delete 뭐이런 거 하는거를 method, function이라고 함
help("") 치면 class help document 나옴
이런식으로 class만들어서 각각의 객체로 계속 찍어낼수 있음
Python modules are separate files that contain classes, functions, and other data that allow us to import and make use of these methods and classes in our own code. Python comes with a lot of modules out of the box. These modules are referred to as the Python Standard Library. You can make use of these modules by using the import keyword, followed by the module name. For example, we'll import the random module, and then call the randint function within this module:
이런식으로 모듈 임포트 해서, 미리 만들어놓은 라이브러리 쉽게 사용 가능
convince = 납득시키다 , 설득하다
'Service > Coding' 카테고리의 다른 글
Quiz 3 week - Python (0) | 2022.02.15 |
---|---|
Google Python Automation Certification - Week 6 (0) | 2022.02.09 |
Google Python Automation Certification - Week 4 (0) | 2022.02.03 |
Google Python Automation Certification - Week 3 (0) | 2022.02.02 |
Google Python Automation Certification - Week 2 (0) | 2022.02.01 |