notebook vb

This commit is contained in:
2026-03-14 07:45:53 +01:00
parent d6cb2b4490
commit a599b6741b
38 changed files with 15 additions and 17 deletions

7
Trash/Form.py Normal file
View File

@@ -0,0 +1,7 @@
def console_form():
print("=== Registration Form ===")
name = input("Enter your name: ")
email = input("Enter your email: ")
print(f"\nThank you, {name}! We'll contact you at {email}.")
console_form()