Select the correct output of the following String operations
strOne = str("pynative")
strTwo = "pynative"
print(strOne == strTwo)
print(strOne is strTwo)
I thought it would be True,False because while it == the same "value", it is NOT referring to the same code in memory, right? or am I just missing something obvious or misunderstanding something basic?)