initial commit

This commit is contained in:
2025-10-01 10:46:21 +02:00
commit 50a55e19d6
138 changed files with 2037 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import random
import string
def generate_password(length=int) -> str:
chars = string.ascii_letters + string.digits + string.punctuation
password = "".join(random.choice(chars) for _ in range(length))
return password
length = int(input("Gib die Laenge deines Passwortes ein: "))
print(generate_password(length))