Does not the sensory pleasure [Empfindungslust] remain the same, despite the change of liking into disliking? It “tastes good,” and yet I have no liking for “sweet stuff” [süßen Zeug]. But surely an analysis is required, and the question is that of a more precise explication....
1.>>> a = "irgendein_string" >>> id(a) 140420665652016 >>> id("irgendein" + "_" + "string") # Beachte, dass beide ids dieselben sind. 1404206656520162.>>> a = "wtf" >>> b = "wtf" >>> a is b True >>> a = "wtf!" >>> b = "wtf!" >>> a is b False3....