Contact: aviboots(AT)netvision.net.il
40,959 questions
53,424 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 '''