In python of Jupiter notebook
Write a python function called trng that takesthree numbers x, y, and z, and specifies if those can form atriangle (i.e., returns the word triangle if they can, and Not atriangleotherwise).
Note: In order for three numbers to form a triangle sum ofany two of them must be greater than the third one(e.g., x=1, y=2, z=4 cannot form a triangle because x+y is notgreater than z even though x+z>y and y+z>x).
No output is needed for this problem. Yet you will need to callthis function in writing your code for Problem 1.2 below.