Begin30. The value of the angle \(\alpha\) in radians \((0 < \alpha < 2 \cdot \pi)\) is given. Determine the value of the same angle in degrees by taking into account that \(180^\circ = \pi\) of radians. For the value of \(\pi\) use 3.14.

Sulition in Python 3:

import random
import math

radian = random.uniform(0, 2*math.pi)
#radian = math.pi/2
degree = radian * 180 / math.pi
print("Radians = ",radian)
print("Degree = ",degree)