# username_if_else.py
userName = input("Enter Username: ")
if (userName == 'Christopher'):
print('Hi Christopher')
else:
print(f'Hi {userName}. Tell Christopher to sign in.')
input('')
##
'''
Enter Username: Christopher
Hi Christopher
if user doesn't type Christopher, but instead, Jane
Hi Jane. Tell Christopher to sign in.
'''
# Dedicated to God the Father
# All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024
# https://github.com/ChristopherTopalian
# https://sites.google.com/view/CollegeOfScripting