Seo 3 months ago

Python create ID for company employies

Python code to create ID for company employies

#id = first 3 characters of company name + - + last 2 characters of name + birth year


#Enter your full name: karIM abdALWAHID

#Hello, Karim!

#Welcome at CleoTrends!



name = input("Enter your full name: ").title()

company_name= "CleoTrends"

birth_year = input("Enter your birthday year: ")

email = input("Enter your email: ")


#edit name

index_of_space = name.index(" ")

new_name = name[:index_of_space]

name_last_3_letters = name[-2:]

print(f'Hello, {new_name}')

print("Welcome at CleoTrends")


#edit company name

company_first_3_letters = company_name[:3]

#id = first 3 characters of company name + - + last 2 characters of name + birth year

id = company_first_3_letters + "-" + name_last_3_letters + birth_year


#edit email

index_of_at = email.index("@")

nem_email = email[:index_of_at] + "@cleotrends.com"


print(f"Your id is : {id}\n" f"Your email is : {nem_email}")

0
184
SEO Marketing Digital: A Comprehensive Guide to Success

SEO Marketing Digital: A Comprehensive Guide to Success

1731841874.png
Seo
8 months ago
What Is an SEO Landing Page and Why Is It Important?

What Is an SEO Landing Page and Why Is It Important?

1731841874.png
Seo
8 months ago
SEO Platform Tips: Skyrocket Your Traffic Quickly

SEO Platform Tips: Skyrocket Your Traffic Quickly

1731841874.png
Seo
9 months ago
SEO Strategy Management: Simple Steps to Win

SEO Strategy Management: Simple Steps to Win

1731841874.png
Seo
8 months ago
The Ultimate Guide to SEO: Why It’s Key to Your Website’s Growth?

The Ultimate Guide to SEO: Why It’s Key to Your Website’s Growth?

1731841874.png
Seo
9 months ago