Using the NumPy package, develop a Python program that calculates the sine, cosine, and tangent of the following angles. Display the result on the screen with the correct label.
import numpy as np
print("This program will calculate and print the sine, cosine, and tangent of the following angles.")
angle_list = [0, 45, 90, 135, 180, 225, 270, 315, 360]
while angle_list:
angle_deg = angle_list.pop(0)
angle = np.deg2rad(angle_deg)
sin = np.sin(angle)
sin_string = "{:.3f}".format(sin)
arc_sin = np.arcsin(sin)
cos = np.cos(angle)
cos_string = "{:.3f}".format(cos)
tan = np.tan(angle)
tan_string = "{:.3f}".format(tan)
tan = float(tan_string)
if tan > 100: