fork download
  1. t = (1, 2, "ebal tebya v rot")
  2. s = frozenset(t)
  3. print(t, s)
  4. print(set((t, s)))
Success #stdin #stdout 0.02s 28384KB
stdin
Standard input is empty
stdout
(1, 2, 'ebal tebya v rot') frozenset({'ebal tebya v rot', 1, 2})
{(1, 2, 'ebal tebya v rot'), frozenset({'ebal tebya v rot', 1, 2})}