In this article we are going to learn about ColourDisplay() method in wxPython. ColourDisplay() function is an inbuilt function present in wxPython. code>ColourDisplay() function is simply used to determine whether the display we are using is colour display or not. ColourDisplay() function returns True if the display is colour, False otherwise.
 
Syntax:
wx.ColourDisplay()
Parameters:
ColourDisplay() function requires no arguments.
Return Type:
bool
Code Example: 
 
Python3
| # importing the moduleimportwx  # definition of the Example classclassExample(wx.Frame):      # instantiating the class    def__init__(self, *args, **kwargs):        super(Example, self).__init__(*args, **kwargs)         self.InitUI()     # method for creation of user interface    defInitUI(self):        # condition for colour display        if(wx.ColourDisplay()==True):            # print if display is Colour display            print("Display is Colour Display")        else:            # print if display is not Colour display            print("Display is not Colour Display")                # definition of the main functiondefmain():      # creating an App object    app =wx.App()      # creating an Example object    ex =Example(None)      # showing the Example object    ex.Show()      # running the App object    app.MainLoop()   # driver codeif__name__ =='__main__':    main() | 
Output: 
 
Display is Colour Display

 
                                    







