正在加载视频...
视频加载失败
Can you solve this string comparison challenge? Explore the behavior of Python's string handling and learn about memory optimization in the language.
3 条评论

Google for Developers1 年前
Here's a hint:

Arman1 年前
print(a is d) will be False. While a is an interned string literal, "".join() creates a new string object for d, so they aren't the exact same object in memory, even if their value is identical.

1st Amendment1 年前
you getting system responses from the ai too?


