xxxxxxxxxx
# Code by "unhappy".
# Find me at: https://www.grepper.com/profile/unhappy
# Define a function
def Thing():
# Set the variable to global
global Money
# Set "Money" variable
Money = 1000.00
# Run the function
Thing()
# Because we set "Money" to global, we can print it here.
print(Money)