"My First Jupyter Notebook"

"JUPYTER!!"

This is my Jupyter Notebook

It is a little different than using markdown in the _post section, however, integrating other languages under the notebook section is much easier.

Using python, I will print "hello" bellow.

Printing Hello!!!

print("hello")
variable = "Coding is fun"
print(variable)
hello
Coding is fun

Calculating area of a triangle using Python!!!

a = int(input("A Value"))
b = int(input("B Value"))
c = int(input("C Value"))

# Uncomment below to take inputs from the user
# a = float(input('Enter first side: '))
# b = float(input('Enter second side: '))
# c = float(input('Enter third side: '))

# calculate the semi-perimeter
s = (a + b + c) / 2

# calculate the area
area = (s*(s-a)*(s-b)*(s-c)) ** 0.5
print('The area of the triangle is %0.2f' %area)
The area of the triangle is 6.00