Python program to convert degree to radian.

 

pi=22/7

degree = float(input("Input degrees: "))

radian = degree*(pi/180)

print(radian)

Comments

Some popular posts

Python Program that computes the net amount of a bank account based a transaction log from console input.