def printHello():
print("Hello")
a = printHello()
- printHello () is a function and a is a variable. Both are not objects.
- Both printHello () and a represent the same object.
- printHello () and a are two different objects.
- Syntax error. Cannot assign functions to a variable in Python.