print("hello")
name = 'hiram brown'
message = f"Hello, it's {name.title()}!"
print(message)
user_name = 'jayjay'
password = 'secret'
password_count = '*' * 6
print(f'Your password {password_count} is {len(password_count)} letters long.')
name = 'Hiram Brown'
print(name.upper())
a = 5
a += 5
print(a)
a = '''
H
C
B
Jr.'''
print(a)
selfish = '01234567'
# 01234567
selfish = selfish + str(8)
print(selfish)
greet = 'hellloooo'
print(greet[0:9])
quote = 'give me liberty, or give me death'
print(quote.upper())
print(quote.replace('me', 'be'))
print(bool(1))
relationship_status = 'it\'s complicated'
print(relationship_status)
birth_year = input("what year were you born?")
age = 2019 - int(birth_year)
print(f"Your age is: {age}")
print("hello")
input ('jayjay')
input ('secret')
user_name = 'jayjay'
password = 'secret'
password_count = '*' * 6
print(f'Your password {password_count} is {len(password_count)} letters long.')