fork(1) download
  1. s1 = 'Foo'
  2. s2 = 'Boo'
  3. s3 = 'Foo'
  4. s4 = 'Duh'
  5. print("We have a collection of types {}.".format(", ".join(set([s1,s2,s3,s4]))))
Success #stdin #stdout 0s 9024KB
stdin
Standard input is empty
stdout
We have a collection of types Duh, Foo, Boo.