Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python coding please CSc 120: Classes: Temperatures Expected Behavior Write a Python class Temp that meets the following requirements Attributes ._temp: the numerical value of
Python coding please
CSc 120: Classes: Temperatures Expected Behavior Write a Python class Temp that meets the following requirements Attributes ._temp: the numerical value of the temperature the object represents; _unit: "C" if the object was created using a Celsius temperature: "F"f it was created using a Fahrenheit temperature Methods . init(self, tenp, unit): where temp is a number and unit is either "c or "F" depending on whether temp represents a Celsius or Fahrenheit temperature. This method initializes the_temp attribute of the object with the value of temp and the_unit attibute with the value of unit. . str_(self): returns a string consisting of the value of the object's_temp attribute together with the unit "C" or "F") the object was created with. Methods that take a second Temp object other as argument and compare the temperature represented by the object is hotter, cooler, or the same as that represented by other. Given two Temp objects ti and t2, t should be possible to determine relationship between them, e., whether they represent the same temperature, or whether one is a bigger or smaller temperature when converted to the same unit, using the comparison operations <. s>z, "-, 1Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started