Загрузка видео...
Не удалось загрузить видео
Can you solve this string comparison challenge? Explore the behavior of Python's string handling and learn about memory optimization in the language.
27,711 просмотров • 1 год назад •via X (Twitter)
Комментарии: 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?



