# Expecting Daniel Elliot print(nameOrganizer('Elliot', 'Daniel'))
No Third Solution
Problem: Write a function and its invocation that divides two numbers and prints the difference between its quotient and remainder
The floor division operator (//) performs division and rounds the quotient down to the nearest whole number. The modulus operator (%) performs division and returns the remainder
Problem: Write a faulty Python program that defines variable foo = 12 and invokes print(foo). However, the print invocation should result in an error, stating that foo is undefined
If you constrain a variable to its local scope, it cannot be accessed outside of said scope