This commit is contained in:
2022-11-22 15:23:19 +01:00
parent 2a1f5ea7c6
commit 8dc4f59ff5
3 changed files with 35 additions and 1 deletions

13
Dienstag/nutzer.py Normal file
View File

@@ -0,0 +1,13 @@
#! /usr/bin/env python3
username = [
"nutzer43",
"sshd",
"debian-tor",
"Root",
"Debian-gdm",
"bin"
]
for user in sorted(username, key=(lambda s : s.lower())):
print(user)