# Print Simple text next to the console
print("Hello World")
# Store value in a variable
a = 5
print(a)
# Create Functions
def add_numbers(a,b):
'''
Add two numbers together
Returns
the sum : type of arguments
'''
return a + b
add_numbers(5858755,76867874)
# Import a Package
import numpy as np
# Generate random data
data = [np.random.standard_normal() for i in range (7)]
data