Chapter 1 & 2

import time

DEATH_QUOTE_AMOUNT = 10

print("1: Hello 2")

time.sleep(1)

hello = "2: Hello 1."

print(hello)

time.sleep(1)

hello = "1: How are you 2?"

print(hello)

time.sleep(2)

hello = "2: I am"

hello_2 = "going good!"

hello_3 = f"{hello} {hello_2}"

print(hello_3)

time.sleep(2)

hello = "1: M"

hello_2 = "E ASWELL."

hello_3 = f"{hello}{hello_2.lower()}"

print(hello_3)

time.sleep(1)

hello = "2: ahh bee s.!"

print(hello.upper())

time.sleep(1)

print("Bee S.: Hello 1 & 2.")

time.sleep(1.5)

print("1: Hello, can you stop stinging us.")

time.sleep(3)

hello = "Bee S.: Yes sure, hello I am"

hello_2 = "bee smith"

print(f"{hello} {hello_2.title()}")

time.sleep(3.5)

hello = "How are you Bee Smith?"

print(f"1: {hello}")

time.sleep(2.5)

print("Bee Smith: Good!")

time.sleep(1)

print("2: Can you go away please?")

time.sleep(2.5)

print("\tBee Smith: Is this far enough?")

time.sleep(2)

print("2: No, go on the Y direction.")

time.sleep(3)

hello = "is this far enough? can you hear me?"

print(f"\n\tBee Smith: {hello.upper()}")

time.sleep(4)

print("1: Barely. Thats far enough")

time.sleep(2)

hello = "'2: What is happening to me?'"

print(f"{hello}")

time.sleep(2.5)

print("1: You are being quoted out of the code")

time.sleep(4)

hello = "What?''"

print(f"''2: {hello}")

time.sleep(1)

print(f"\n\tBee Smith: You are going to die at {DEATH_QUOTE_AMOUNT} quotes (not including double quotes)")

time.sleep(6)

hello = "I just want to say 1, I wanted to know how you were going'''"

print(f"'''2: {hello}")

time.sleep(7)

print("1: Good 2, I am going good")

time.sleep(3)

hello = "Please remember me 1, and I guess you too Bee Smith''''"

print(f"''''2:{hello}")

time.sleep(5.5)

print("1: I will miss you. *SOB*")

time.sleep(2)

print("'''''2:'''''\n\n\n\n\n\n\n\n\n\n5 years later...\n\n\n\n\n\n\n\n\n\n")

time.sleep(1.5)

print("1: Lets do math 3!")

time.sleep(2)

print("3: Sure, lets do it out of PY-MATH-TEXT-BOOK-1")

time.sleep(5.5)

print("PY-MATH-TEXT-BOOK-1: 1. What is 5+7 2. What is 5^3 3. What is 3*5")

time.sleep(3)

print("\n\tBee Smith: I know! Its")

time.sleep(1.5)

print(5+7)

time.sleep(1)

print(5**3)

time.sleep(1)

print(3*5)

#END