Data-410-Raposo

View the Project on GitHub aeraposo/Data-410-Raposo

Hello, world!

Images

My name is Alex and I’m looking forward to data 410, Advanced Machine Learning, this semester. Below is a picture of my dog, Elsa.

Math

Next, let’s look at the Pythagorean theorem: Math or equivalently Math

Python code

And finally, here is some Python code to compute Math given Math and Math using the above formula.

import math
a = int(input("Give a value for 'a'"))
b = int(input("Give a value for 'b'"))
c = math.sqrt(a**2+b**2)
print("The hypotenuse of a triangle with side legths "+str(a)+" and "+str(b)+" is "+str(c))

Return to Alex’s home page