Search
 
SCRIPT & CODE EXAMPLE
 

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)))) + '°')
Comment

PREVIOUS NEXT
Code Example
Python :: python filename without extension 
Python :: how to get current date in python 
Python :: python install bigquery 
Python :: python print do not use scientific notation 
Python :: add role discord .py 
Python :: python datetime without seconds 
Python :: python writeline file 
Python :: tenary operator python 
Python :: find max value index in value count pandas 
Python :: sql alchemy engine all tables 
Python :: reset a turtle python 
Python :: highlight max value in table pandas dataframe 
Python :: python list all files in directory 
Python :: how to convert tuple to int in python 
Python :: python cartesian product 
Python :: pandas transform date format? 
Python :: difference between sort and sorted 
Python :: amazon response 503 python 
Python :: telnet python 
Python :: flask render error template 
Python :: how to use prettytable with python 
Python :: install python 3.9 centos8 
Python :: scientific notation matplotlib python 
Python :: create dictionary comprehension python 
Python :: rsplit string from last 
Python :: time.ctime(os.path.getmtime phyton in datetime 
Python :: pyspark datetime add hours 
Python :: python list of all characters 
Python :: encryption python 
Python :: python if variable is greater than 
ADD CONTENT
Topic
Content
Source link
Name
2+9 =