Contact: aviboots(AT)netvision.net.il
39,926 questions
51,859 answers
573 users
st = {'python', 'java', 'c', 'c++', 'c#'} removed = st.pop() print(st) print(removed) removed = st.pop() print(st) print(removed) ''' run: {'python', 'c#', 'c', 'c++'} java {'c#', 'c', 'c++'} python '''