Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- difftime
- Intersect
- 정보획득량
- 데이터분석
- count
- 여러 데이터 검색
- 단순회귀 분석
- 막대그래프
- sqld
- 팀스파르타
- if문 작성법
- 그래프시각화
- Dense_Rank
- merge
- sql
- 불순도제거
- loop 문
- Sum
- 상관관계
- 히스토그램 그리기
- max
- 총과 카드만들기
- 빅데이터분석
- 순위출력
- 회귀분석
- 그래프 생성 문법
- 데이터분석가
- 빅데이터
- %in%
- 회귀분석 알고리즘
Archives
- Today
- Total
ch0nny_log
[빅데이터분석] Python_26. 클래스 이해하기 본문
class Gun():
def charge(self, num):
self.bullet = num
print(self.bullet, '발이 장전 되었습니다.')
def shot(self, num):
for i in range(1, num + 1):
if self.bullet > 0:
print('탕!')
self.bullet -= 1
elif self.bullet == 0:
print('총알이 없습니다.')
break
def check_bullets(self):
print('남은 총알:', self.bullet, '발')
# 사용 예시
gun = Gun()
gun.charge(5)
gun.shot(3)
gun.check_bullets() # 남은 총알: 2 발
gun.shot(3)
gun.check_bullets() # 남은 총알: 0 발
class Card():
def __init__(self):
self.money=0
print("카드가 발급 되었습니다.", self.money, "원이 충전되었습니다.")
def charge(self, num):
self.money = num
print(self.money,"원이 충전 되었습니다.")
def consume(self, num):
if self.money > 0:
print(num, "원이 사용되었습니다.")
self.money = self.money-num
elif self.money == 0:
print("잔액이 없습니다.")
print(self.money, "원 남았습니다.")
# 사용 예시
card1 = Card()
card1.charge(10000)
card1.consume(5000)
class BankAccount:
# 생성자 메서드
def __init__(self, owner, balance=0):
self.owner = owner
self.balance = balance
# 입금 메서드
def deposit(self, amount):
self.balance += amount
print(f"{amount}원이 입금되었습니다. 현재 잔액: {self.balance}원")
# 출금 메서드
def withdraw(self, amount):
if amount > self.balance:
print("잔액이 부족합니다.")
else:
self.balance -= amount
print(f"{amount}원이 출금되었습니다. 현재 잔액: {self.balance}원")
# 계좌 생성
my_account = BankAccount("홍길동", 1000)
# 입금
my_account.deposit(500) # 500원이 입금되었습니다. 현재 잔액: 1500원
# 출금
my_account.withdraw(200) # 200원이 출금되었습니다. 현재 잔액: 1300원
# 잔액보다 큰 금액 출금 시도
my_account.withdraw(1500) # 잔액이 부족합니다.
class BankAccount:
# 생성자 메서드
def __init__(self, owner, balance=0):
self.owner = owner
self.balance = balance
# 입금 메서드
def deposit(self, amount):
self.balance += amount
print(f"{amount}원이 입금되었습니다. 현재 잔액: {self.balance}원")
# 출금 메서드
def withdraw(self, amount):
if amount > self.balance:
print("잔액이 부족합니다.")
else:
self.balance -= amount
print(f"{amount}원이 출금되었습니다. 현재 잔액: {self.balance}원")
# 이체 메서드
def transfer(self, amount, other_account):
if amount > self.balance:
print("잔액이 부족하여 이체할 수 없습니다.")
else:
self.balance -= amount
other_account.deposit(amount)
print(f"{amount}원이 {other_account.owner}님께 이체되었습니다. 현재 잔액: {self.balance}원")
# 사용 예시
account1 = BankAccount("홍길동", 1000)
account2 = BankAccount("김철수", 500)
# 이체
account1.transfer(300, account2) # 300원이 김철수님께 이체되었습니다. 현재 잔액: 700원
'빅데이터 분석(with 아이티윌) > python' 카테고리의 다른 글
phython cbt 예상문제. (0) | 2024.08.12 |
---|---|
[빅데이터분석] Python_27. 인스턴스 변수와 클래스 변수 (0) | 2024.08.09 |
[빅데이터분석] Python_25. 사용자 정의 예외 처리 (0) | 2024.08.08 |
[빅데이터분석] Python_24. 예외처리 이해하기 ④ (try~except Exception as e) (0) | 2024.08.08 |
[빅데이터분석] Python_23. 예외처리 이해하기 ③ (try~except~finally) (1) | 2024.08.08 |