通过初学者课程学习Python,目前正在上课。例如,本书使用汽车/电动汽车的描述来解释课程和子课程等。
以下是代码:
class Car():
''' A simple attempt to represent a car '''
def __init__(self, make, model, year):
''' Initialize attributes to describe a car '''
self.make = make
self.model = model
self.year = year
self.odometer_reading = 0
def car_description(self):
''' Return a neatly formatted descriptive name '''
long_name = str(self.year) + ' ' + self.make + ' ' + self.model
return long_name.title()
class ElectricCar(Car):
# When we put (Car) in the class definition, a child class is created with the attributes of Car.
''' Represents aspects of a car, specific to electric vehicles. '''
def __init__(self, make, model, year):
''' Initalize attributes of the parent class. '''
super().__init__(make,model,year)
self.battery = Battery()
class Battery():
''' A simple attempt to model a battery for an electric car. '''
def __init__(self, battery_size=70):
''' Initialize the battery's attributes.'''
self.battery_size = battery_size
def describe_battery(self):
''' Print a statement describing the battery size. '''
print("This car has a " + str(self.battery_size) + "-kWh battery.")
def get_range(self):
''' Print a statement about the range this battery provides. '''
if self.battery_size == 70:
range = 240
elif self.battery_size == 85:
range = 270
message = "This car can go approximately " + str(range)
message += " miles on a full charge."
print(message)
my_tesla = ElectricCar('tesla','model s', 2016)
print(my_tesla.car_description())
my_tesla.battery.describe_battery()
my_tesla.battery.get_range()
在类Battery()中,方法get_range显示两种可能的电池尺寸(70和85)及其各自的范围。
在电池的 init 中,电池尺寸默认设置为70 kWh。
我如何拨打电池()将车辆电池尺寸设定为85千瓦时?
答案 0 :(得分:3)
只需给它值:
self.battery = Battery(85)
仅当没有值传递给函数时才使用默认值,否则,将使用传递的参数。
正如@jasonharper建议的那样,您可以在ElectricCar
的{{1}}方法中添加一个参数来指定电池尺寸:
__init__()