diff --git a/Pc_information.py b/Pc_information.py new file mode 100644 index 00000000000..3117d78bdfa --- /dev/null +++ b/Pc_information.py @@ -0,0 +1,11 @@ +import platform # built in lib + +print(f"System : {platform.system()}") # Prints type of Operating System +print(f"System name : {platform.node()}") # Prints System Name +print(f"version : {platform.release()}") # Prints System Version +# TO get the detailed version number +print(f"detailed version number : {platform.version()}") # Prints detailed version number +print(f"System architecture : {platform.machine()}") # Prints whether the system is 32-bit ot 64-bit +print(f"System processor : {platform.processor()}") # Prints CPU model + +