Advertisement
calfred2808

#Python Get System Information

Jul 21st, 2020
1,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1.  
  2. #Get system information
  3. import platform
  4.  
  5.  
  6. print(platform.platform())
  7. print(platform.system())
  8. print(platform.processor())
  9. print(platform.architecture())
  10. print(platform.machine())
  11. print(platform.release())
  12. print(platform.uname())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement