Hi, please code this using Python.
OOP with Robbie
Question 1 (Robot Class: Constructor and Variables)
Your first task is to design the Robot class with the following class variable:
phrase (i.e., a string denoting the greeting phrase of the robot which should be initialized with the value "Hello World!").
Moreover, Robot should have the following two instance variables:
name (i.e., a string denoting the name of the robot which should be initialized by the input argument of the constructor),
phrase (i.e., a string denoting the greeting phrase of the robot which should be initialized as the value of the class variable phrase in the constructor).
The constructor of the Robot class should take in a single input name.
V Expand
The output of a program that correctly implements the Robot class should behave as follows:
>>> robot_1 = Robot("Robbie")
>>> robot_1.name
Robbie
>>> robot_1.phrase
Hello World!