#!/usr/local/bin/python3 def spam(): eggs = "hello" print(eggs) eggs = 42 spam() print(eggs)