Advertisement
Guest User

untitled

a guest
Apr 21st, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. import platform
  2.  
  3. my_os_verbose = platform.uname()
  4. my_os_simple = platform.system()
  5.  
  6. ## OR ##
  7.  
  8. from sys import platform
  9.  
  10. my_os_simple = platform
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement