fork download
  1. alguns = ["h", "c", "k", "a", "d", "j", "a"]
  2. alguns.remove("a")
  3. print(alguns)
Success #stdin #stdout 0.01s 27712KB
stdin
Standard input is empty
stdout
['h', 'c', 'k', 'd', 'j', 'a']