Question #213

Author: admin
tags: Python  
user_name = 'Tom'

print(user_name)

def change_user_name():
    user_name = 'Bob'

change_user_name()

print(user_name)
What will be printed?
Tom Tom
Tom Bob
Bob Bob
All variable assignments in a function store the value in the local symbol table.
Rate the difficulty of the question:
easyhard