What does the following code print to the console?
first_name = "television"
hobby = "homer"
tmp = first_name
first_name = hobby
hobby = tmp
print(f"T{first_name[1:3]} likes to watch {hobby[4:]}")
A string is immutable in Python?
Every time when we modify the string, Python Always create a new String and assign a new string to that variable.
What is the output of the following code?
