Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Update
- javasecurity
- servlet에러
- 소켓통신
- 오라클 c##제거
- C++
- jsNature
- hit desktop
- jsp에러
- SpringToolSuite4
- html주문폼
- html사용자함수
- git stah
- oracle 18
- bootstrap
- aws
- AWS사용자
- IAM 결제
- js구구단
- MFC
- springboot
- hmlt
- JPA
- TCP/IP
- 깃헙 데스크탑
- AWS 청구
- AWS경보
- AWS요금
- IP통신
- web browser external
Archives
- Today
- Total
Ynns
Python 3 본문
class Car :
speed = 0
def upSpeed(self, value):
self.speed=self.speed+value
def downSpeed(self, value):
self.speed=self.speed-value
class Sedan(Car):
seatNum=0 #5
def getSeatNum(self):
return self.seatNum
class Truck(Car):
capacity=0 #50
def getCapacity(self):
return self.capacity
#인스턴스화(main)
sedan1, truck1 = None, None
sedan1=Sedan()
truck1=Truck()
sedan1.upSpeed(100)
truck1.upSpeed(10)
sedan1.seatNum=5
truck1.capacity=50
print("승용차의 속도는 %d km, 좌석수는 %d 개입니다" % (sedan1.speed, sedan1.getSeatNum()))
print("트럭의 속도는 %d km, 트럭의 총 중량은 %d 톤입니다" % (truck1.speed, truck1.getCapacity()))
Comments