Last active
March 30, 2020 09:20
-
-
Save eddydesh/f7de18d3d1fb99b7a2cf78e4259a4804 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
monitor = "Dell Alienware AW3418DW" | |
keyboard = "Dell Alienware AW768" | |
mouse = "Dell Alienware AW959" | |
cabinet = "Dell Alienware Aurora" | |
yourname = "Smart-Employee" | |
print("Hello ", yourname, ",", "\nYou have really amazing system with this amazing configuration:") | |
print("\n", cabinet, "\n", monitor, "\n", keyboard, "\n", mouse) | |
print("Cabinet ID is: ", id(cabinet)) | |
print("Monitor ID is: ",id(monitor)) | |
print("Keyboard ID is: ",id(keyboard)) | |
print("Mouse ID is: ",id(mouse)) | |
# Output | |
Hello Smart-Employee , | |
You have really amazing system with this amazing configuration: | |
Dell Alienware Aurora | |
Dell Alienware AW3418DW | |
Dell Alienware AW768 | |
Dell Alienware AW959 | |
Cabinet ID is: 4557842352 | |
Monitor ID is: 4557190288 | |
Keyboard ID is: 4557842112 | |
Mouse ID is: 4557842272 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello Smart-Employee ,
You have really amazing system with this amazing configuration:
Dell Alienware Aurora
Dell Alienware AW3418DW
Dell Alienware AW768
Dell Alienware AW959
Cabinet ID is: 4557842352
Monitor ID is: 4557190288
Keyboard ID is: 4557842112
Mouse ID is: 4557842272