Python #1 - registration program

Python #1 - registration program

May 12, 2021

Hi, this is my first program which I made by myself. I'm totally new at programming, so I think, this is a good start. It just ask you for basic info and generate login for you. :)

print ("What's your name: ")

name = input()


print ("What's your surname: ")

surname = input()


print("Which year were you born? ")

years = input()


login = name + surname

password = surname + years

email_address = name + "." + surname


print("Setting your data.. click enter")

input()
print("Your login is: "+login.lower())

print("Your password is: "+password.lower())

print("Your mail address is: "+email_address.lower() + "@gmail.com")


print ("\nThank you for registration.")
input()

Enjoy this post?

Buy Denis Klier a coffee

More from Denis Klier