In [ ]:
a = 5
d = 5000
e = 50928734

In [ ]:
b = 10
print(b * 20)

In [ ]:
# This code uses 4 spaces instead of a tab (pep8 compliance)
for i in range(0,5):
    b = a + i
    print(b)

In [ ]:
# This code uses tabs
a = b * 25
for i in range(0,5):
	b = a + i
	print(b)

This here is markdown

This is line two of markdown. Isn't it beautiful?

This is line three of markdown

Markdown header!