Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2023
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. Python 3.8.10 (default, May 26 2023, 14:05:08)
  2. [GCC 9.4.0] on linux
  3. Type "help", "copyright", "credits" or "license" for more information.
  4. >>> s = {1, 2, 3, 4, 5, 6, 7, 8}
  5. >>> s.pop()
  6. 1
  7.  
  8.  
  9. Python 3.9.16 | packaged by conda-forge | (feeb267e, May 11 2023, 16:49:45)
  10. [PyPy 7.3.11 with GCC 12.2.0] on linux
  11. Type "help", "copyright", "credits" or "license" for more information.
  12. >>>> s = {1, 2, 3, 4, 5, 6, 7, 8}
  13. >>>> s.pop()
  14. 8
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement