#!/usr/local/bin/python3 eggs = 15 def spam(): eggs = 30 print(eggs) spam() print(eggs)