Guest User

Untitled

a guest
May 27th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. import platform
  2.  
  3. print("architecture = {!r}".format(platform.architecture()))
  4. print("machine = {!r}".format(platform.machine()))
  5. print("node = {!r}".format(platform.node()))
  6. print("platform = {!r}".format(platform.platform()))
  7. print("processor = {!r}".format(platform.processor()))
  8. print("python_build = {!r}".format(platform.python_build()))
  9. print("python_compiler = {!r}".format(platform.python_compiler()))
  10. print("python_branch = {!r}".format(platform.python_branch()))
  11. print("python_implementation = {!r}".format(platform.python_implementation()))
  12. #print("python_revision = {!r}".format(platform.python_revision()))
  13. print("python_version = {!r}".format(platform.python_version()))
  14. print("python_version_tuple = {!r}".format(platform.python_version_tuple()))
  15. print("release = {!r}".format(platform.release()))
  16. print("system = {!r}".format(platform.system()))
  17. #print("system_alias = {!r}".format(platform.system_alias()))
  18. print("version = {!r}".format(platform.version()))
  19. print("uname = {!r}".format(platform.uname()))
  20. print("java_ver = {!r}".format(platform.java_ver()))
  21. print("win32_ver = {!r}".format(platform.win32_ver()))
  22. #print("popen = {!r}".format(platform.popen()))
  23. print("mac_ver = {!r}".format(platform.mac_ver()))
  24. print("dist = {!r}".format(platform.dist()))
  25. print("linux_distribution = {!r}".format(platform.linux_distribution()))
  26. print("libc_ver = {!r}".format(platform.libc_ver()))
Add Comment
Please, Sign In to add comment