fork download
  1. # your code goes here
  2. test = dict()
  3. a = (1,2,3,4,5)
  4. test[3] = (1,2,4,5)
  5. print(test)
Success #stdin #stdout 0.02s 27704KB
stdin
Standard input is empty
stdout
{3: (1, 2, 4, 5)}