블로그
-
한국여성들의 '메이크오버'와 '성형' 말못할 사연..말못할 것도 없는 사연
For example, American middle-class women aged 24–50 years with self-determination undergocosmetic surgery globalised and regionalised standards of beauty, and to obtain the virtuous femininity ideology of upper-class
blog.naver.com · 2026.06.17
-
크롬 북마크 파이어폭스 이전용 파이썬 스크립트
string.ascii_letters + string.digits + "_-" return "".join(secrets.choice(alphabet) for _ in range(12)) class IdGen: def __init__(self): self.n = 1 def n.......
blog.naver.com · 2026.06.14
-
Python @classmethod 완전 정리
클래스를 보다 보면 이런 코드 자주 보입니다. class Person: @classmethod def from_string(cls, text): ... Demo: def instance_method(self): print("인스턴스 메서드, self =", self) @classmethod def class_method(cls):
blog.naver.com · 2025.12.15
-
Python @classmethod 완전 정리
클래스를 보다 보면 이런 코드 자주 보입니다. class Person: @classmethod def from_string(cls, text): ... Demo: def instance_method(self): print("인스턴스 메서드, self =", self) @classmethod def class_method(cls):
blog.naver.com · 2025.12.15
-
Python @property 완전 이해하기
“함수인데 괄호 없이 속성처럼 쓰는 그 이상한 문법” Python 클래스를 보다 보면 이런 코드 많이 보입니다. class Person: @property def name(self) : return self.
blog.naver.com · 2025.12.15
-
Python @property 완전 이해하기
“함수인데 괄호 없이 속성처럼 쓰는 그 이상한 문법” Python 클래스를 보다 보면 이런 코드 많이 보입니다. class Person: @property def name(self) : return self.
blog.naver.com · 2025.12.15
-
pyqt5 Dialog handling
\g_test.ui")[0] class MyWindow(QWidget,form_class): def setting_Dialog(self): print('setting dialog open
blog.naver.com · 2025.05.21
-
[파이썬]클래스 - 은행 입출금 관리 프로그램
# 은행계좌 실습 class BankAccount(): def __init__(self, initValue=0): self. 잔고 = {self.__balance}") def withdraw(self, amount): if self.
blog.naver.com · 2023.01.16
-
[파이썬]클래스
Counter: def __init__(self): self.count = 0 def increment(self): self.count += 1 def decrement(self) : self.count -= 1 def report(self): print(f"현재 카운터의.......
blog.naver.com · 2023.01.16
-
[파이썬]클래스 - 원의 둘레와 넓이 구하기
import math class Circle: def __init__(self, radius): self.radius = radius def area(self): return math.pi * (self.radius ** 2) def perimeter(self): return 2 * math.pi* self.radius c = Circle(10)# input("원의
blog.naver.com · 2023.01.16