Python quiz
What is the language that never gets printed ?
A. Golang
B. Java
C. Python
D. Python and JavaScript
E. Java and JavaScript
@datashaman are you sure about it
@RecursiveNeuron maybe the cast to set sorts the contents…
@RecursiveNeuron would have to be B. Java. Turning the deque object into a set object changes what pop() does. A set’s pop will randomly select an item from the list to remove it. So Java looks like the only one guaranteed not to be printed (going to assume A has a typo with an uppercase G that does not match the deque’s lowercase g item for golang).