This media is not supported in your browser
VIEW IN TELEGRAM
What will this Python code output? #junior #python
A task for beginners.
A task for beginners.
s = set()
a = [1, 2, 3]
s.add(tuple(a))
print(s)
❤4🔥1