def greeting(name): print("Hello, " + name) person1 = { "name": "John", "age": 36, "country": "Norway" } if __name__ == "__main__": # The following test codes are executed only when this file is executed alone (as "main"). # They will not be executed when imported by others as a module # (in which __name__ will be the filename of the module). print("Name: ", __name__) greeting("Jason") print(person1["name"], ' is ', person1["age"], ' years old.', 'He/She lives in', person1["country"])