일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 입출력 패턴
- string 함수
- 표준 입출력
- 알고리즘 공부방법
- 입/출력
- Django Nodejs 차이점
- 프레임워크와 라이브러리의 차이
- scanf
- k-eta
- EOF
- getline
- c++
- vscode
- 장고란
- 자료구조
- 매크로
- 엑셀
- iOS14
- correlation coefficient
- 연결요소
- 시간복잡도
- 구조체와 클래스의 공통점 및 차이점
- double ended queue
- Django란
- string 메소드
- Django의 편의성
- 2557
- 백준
- UI한글변경
- 이분그래프
- Today
- Total
Storage Gonie
6. Python 리스트 Comprehension 본문
article.text for article in self.articles 방식으로 리스트를 생성할 수 있다.
class Text:
def __init__(self, str):
self.text = str
def __str__(self):
return "Text: " + self.text
class User:
num_users = 0 # class 변수
def __init__(self, name):
self.numArticle = 0 # instance 변수
self.name = name
self.articles = []
User.num_users += 1
def write(self, text):
self.articles.append(text)
self.numArticle += 1
def __str__(self):
return "User: %s %s" % (self.name, self.articles)
#return "User: %s %s" % (self.name, [article.text for article in self.articles]) 로 해주면 2번째 출력 결과가 나옴
t = Text("This is some text")
t2 = Text("This is some text2")
user = User('honux')
user.write(t)
user.write(t2)
print(t)
print(user, user.numArticle)
'''
Text: This is some text
User: honux [<__main__.Text object at 0x1032c50b8>, <__main__.Text object at 0x1032c50f0>] 2
Text: This is some text
User: honux ['This is some text', 'This is some text2'] 2
'''
'웹개발 > Django 웹서비스 개발(인프런)' 카테고리의 다른 글
8. 장고의 MTV관계 (0) | 2019.02.08 |
---|---|
7. Python 클래스 상속 (0) | 2019.02.08 |
5. Python 클래스 변수와 인스턴스 변수의 차이 & 함수 오버라이딩 (0) | 2019.02.07 |
4. Django 설치 및 테스트 (0) | 2019.02.07 |
3. Anaconda + Pycharm에서의 가상환경 관리 및 사용방법(Mac) (0) | 2019.02.07 |