Question: ONLY PYTHONN!! PLEASE !! WOULD YOU PLEASE ANSWER TWO QUESTIONS Please implement a class called Circle where you can generate objects in the following way:
ONLY PYTHONN!! PLEASE !! WOULD YOU PLEASE ANSWER TWO QUESTIONS


Please implement a class called Circle where you can generate objects in the following way: c = Circle(x, y, r); # x: x coordinate of center #y: y coordinate of center #r: radius Add a method named "touches to this Circle class which receives another Circle instance and checks whether these two circles touch each other externally and only at one point. The method should return a Boolean value and will be called like this: c1.touches(c2) # returns either true or false. 2 Implement a Car class. A Car object has the following information: odometer, brand, color, and gear. You will be creating brand new Car objects with odometer set initially to 0. Implement methods increment_gear() and decrement_gear() to increment or decrement the gear. It is initially set to 0. Implement a drive() method which takes two arguments: (1) Number of hours traveled and (2) km traveled per hour. This function is going to be used to modify the odometer. Implement a method named display() to display the information of a car. Implement a test method that creates three Car objects. Assign their brand, color and gear. Then, call their display() methods to print their information
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
