python scope
#Every one can use this varible
x = 9
def num_returner():
    return x
print(num_returner())
#--------------------------------------
x = 90
def private_var():
  num = 20
  return x + num
print(private_var())
#it will give an error because it is not the public variable on the function 
print(num)
