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

Solution in Python 3:

import random
import math

degree = random.randrange(0, 360)
degree = 180
radian = degree / 180 * math.pi
print("Degree = ",degree)
print("Radians = ",radian)