Skip to content

Commit 5c12418

Browse files
Merge pull request #1 from B-Kernel/codespace-eriktherdev-refactored-waffle-5657wv7j6wp34vgv
Prints the current OS + OS Version to the screen
2 parents baf5dec + 2ca526f commit 5c12418

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

check.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
from sys import platform
2-
print(str(platform.system()))
1+
import platform
2+
import sys
3+
print(str(platform.system()) + " " + str(platform.release()))

0 commit comments

Comments
 (0)