Answers for "What will be the output of the following program?"

0

What will be the output of the following program?

this = ["I", "am", "not", "a", "crook"]
that = ["I", "am", "not", "a", "crook"]
print("Test 1: {0}".format(this is that))
that = this
print("Test 2: {0}".format(this is that))
Posted by: Guest on September-24-2021

Code answers related to "What will be the output of the following program?"

Python Answers by Framework

Browse Popular Code Answers by Language