the code below offer three ways of to display output.GUI window or Print on screen or save to text file.     import random class Circle():     def __init__(self, radius=1.0):         self.__radius = radius         self.__area = self.find_area()     def get_radius(self): return self.__radius     def set_radius(self, radiu

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Make the code below offer three ways of to display output.GUI window or Print on screen or save to text file.
 
 
import random
class Circle():
    def __init__(self, radius=1.0):
        self.__radius = radius
        self.__area = self.find_area()

    def get_radius(self): return self.__radius

    def set_radius(self, radius): self.__radius = radius

    def find_area(self):
        self.__area = 3.14159265 * self.__radius ** 2
        return self.__area

    def display(self):
        self.find_area()
        print('Circle, Area of Circle: {:.2f}'.format(self.__area))


class Square():
    def __init__(self, side=1.0):
        self.__side = side
        self.__area = self.find_area()

    def get_side(self): return self.__side

    def set_side(self, side): self.__side = side

    def find_area(self):
        self.__area = self.__side ** 2
        return self.__area

    def display(self):
        self.find_area()
        print('Square, Area of Square: {:.2f}'.format(self.__area))


class Cube():
    def __init__(self, length=1, width=2, height=3):
        self.__length = length
        self.__width = width
        self.__height = height
        self.__area = self.find_area()

    def get_length(self): return self.__length

    def get_width(self): return self.__width

    def get_height(self): return self.__height

    def set_length(self, length): self.__length = length

    def set_width(self, width): self.__width = width

    def set_height(self, height): self.__height = height

    def find_area(self):
        self.__area = self.__length * self.__height * self.__width
        return self.__area
    def display(self):
        self.find_area()
        print('Cube, Area of Cube: {:.2f}'.format(self.__area))




shapes = []
for i in range(10):
    #Random number
    rand = random.randint(1, 4)
   
    if rand == 1:
        shapes.append(Circle())
    elif rand == 2:
        shapes.append(Square())
    else:
        shapes.append(Cube())


for shape in shapes:
    shape.display()
 

    
 
 
 
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY