Notice
Recent Posts
Link
Tags
- mysql
- 문자열
- Docker
- spring
- 프로그래머스
- static
- java
- SSL
- string
- nginx
- jpa
- 스프링부트
- ORM
- 1차원 배열
- DI
- spring security 6
- select
- springboot
- 스프링
- PYTHON
- hibernate
- Django
- AWS
- 데이터베이스
- @transactional
- sql
- join
- 자바
- spring mvc
- spring boot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Archives
목록PASS (1)
개발하는 자몽
[Python] pass를 사용하는 이유
파이썬에는 pass라는 것이 있는데, 처음 접했을 때 이게 무슨 용도로 있는 건지 이해할 수 없었다. 찾아보니 단순히 앞으로 구현할 예정인 코드에 놓는 것 같다. 일단 코드 껍데기를 만들어놓고 실제 내부 구현은 나중에! 같은 느낌이다. 실제로 아래와 같이 코드를 작성하고 pass가 있는 메서드를 호출하면 아무 일도 일어나지 않는다. class Person: def greeting(self): print("hello") def pass_test(self): pass class Student(Person): def greeting(self): super().greeting() # 부모 클래스의 메서드를 호출하여 중복 줄이기 print("i am a student") jaamong = Student() jaa..
Python
2023. 9. 11. 15:45