fork download
  1. # your code goes here
  2. hari = (1,2,3,4)
  3. print(hari)
  4. print(type(hari))
  5.  
Success #stdin #stdout 0.08s 14116KB
stdin
Standard input is empty
stdout
(1, 2, 3, 4)
<class 'tuple'>