Aug-24-2024, 09:16 AM
(This post was last modified: Aug-24-2024, 11:26 AM by Larz60+.
Edit Reason: tags added
)
Hi, everyone, i'm new (biggner) to python, started coding from python crash course book, reached now in chapter 9,
having and issue with out put, as there is no out put, the result shows that the (program exited with code:0), code is copied below, shows that printing command is given, iwould realy appreciate your help anf guidlines, thank you.
having and issue with out put, as there is no out put, the result shows that the (program exited with code:0), code is copied below, shows that printing command is given, iwould realy appreciate your help anf guidlines, thank you.
class Car(): """A simple attempt to represent a car.""" def __init__(self, make, model, year): self.make = make self.model = model self.year = year self.odometer_reading = 0 def get_descriptive_name(self): long_name = str(self.year) + ' ' + self.make + ' ' + self.model return long_name.title() def read_odometer(self): print("This car has " + str(self.odometer_reading) + " miles on it.") def update_odometer(self, mileage): if mileage >= self.odometer_reading: self.odometer_reading = mileage print("You can't roll back an odometer!") def increment_odometer(self, miles): self.odometer_reading += miles class ElectricCar(Car): """Represent aspects of a car, specific to electric vehicles.""" def __init__(self, make, model, year): """Initialize attributes of the parent class.""" super().__init__(make, model, year) my_tesla = ElectricCar('tesla', 'model s', 2016) print(my_tesla.get_descriptive_name())
Larz60+ write Aug-24-2024, 11:25 AM:
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
BBCode tags have been added for you this time.
Please post all code, output and errors (it it's entirety) between their respective tags. Refer to BBCode help topic on how to post. Use the "Preview Post" button to make sure the code is presented as you expect before hitting the "Post Reply/Thread" button.
BBCode tags have been added for you this time.