A roundabout way:

lol = ["a",1,"b",(2,3)]
lol[4] = collect(lol[4])

Output:

4-element Array(Any,1):
  "a"
  1
  "b"
  [2,3]

Reply via email to