Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

find angle mbc in python

from math import atan2
from math import degrees

ab = float(input())
bc = float(input())

print(str(round(degrees(atan2(ab, bc)))) + '°')
Source by kimsangyeon.github.io #
 
PREVIOUS NEXT
Tagged: #find #angle #mbc #python
ADD COMMENT
Topic
Name
8+1 =