본문 바로가기
Etc./Python

[Python] 상속, list, dict comprehension

by ahj 2021. 10. 8.

Python에서의 상속은 아주 단순하게 구현한다 

class Parent():
	def method(self):
    	print("부모 클래스")
class Child(Parent):#자바와는 다르게 아주 간단하게 상속할 수가 있다!
	def method(self):#Override는 뭐 간단 ㅎ
    	print("자식 클래스")

 

List

List Comprehension

  • 파이썬의 유용한 도구
    • 예1 [ i*i for i in range(1,11) ] # [ 계산식 for문 ]
    • 예2 [ i*i for i in range(1,11) if i % 2 == 0 ] # [ 계산식 for문 조건문 ]
    • 예3 [ ( x, y ) for x in range(15) for y in range(15) ] # [ 계산식 for문 for문 ]

Dictionary

Dictionary Comprehension

  • 파이썬의 유용한 도구
  • 예시
    • { "{}번".format(number):name for number, name in enumerate(students) } # [ 형식 for문 ]
    • {student:score for student, score in zip(students, scores)}

'Etc. > Python' 카테고리의 다른 글

[Python] 몫과 나머지 - divmod, unpacking  (0) 2021.10.09
[Python] 파이썬을 파이썬 답게 시작  (0) 2021.10.09
[Python] is vs ==  (0) 2021.10.07
[Python] list 유용 함수  (0) 2021.10.07
[Python] boolean 자료형  (0) 2021.10.07

댓글