This commit is contained in:
2025-10-26 18:38:12 +01:00
parent 8712668ad4
commit e07296f23f
5 changed files with 157 additions and 0 deletions

7
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()