251DProgramming and Robotics 8.LeeL100979@wpga.ca-COMP2
251DProgramming and Robotics 8.LeeL100979@wpga.ca-COMP3
251DProgramming and Robotics 8.LeeL100979@wpga.ca-COMP4
251DProgramming and Robotics 8.LeeL100979@wpga.ca-NHL
251DProgramming and Robotics 8.LeeL100979@wpga.ca
1. Twin Python Projects – Numbers and Words
submitted by form
Number Project
This code calculates your change in cash for the latest amount of bills.
def main():
price = int(input(“You enter a store with a $100 bill, how much do you spend?”))
total = price
if total > 100:
print(“too expensive, you only have a $100 bill”)
else:
print(“you bought an item for $” + str(total) + “, and paid it with a $100 bill\nyour change is:”)
price = coump20(0, 100 – price)
price = coump10(0, price)
price = coump5(0, price)
price = coump1(0, price)
def coump20(z, p):
z = p // 20
p = p – z * 20
print(str(z) + “, $20 bill(s)”)
return p
def coump10(z, p):
z = p // 10
p = p – z * 10
print(str(z) + “, $10 bill(s)”)
return p
def coump5(z, p):
z = p // 5
p = p – z * 5
print(str(z) + “, $5 bill(s)”)
return p
def coump1(z, p):
z = p // 1
p = p – z * 1
print(str(z) + “, loonie(s)”)
return p
main()
Word Project
This code tells a scary story about you, Amy, and Jonathan
def main():
print(“””Hello, this is a story game where you will chose your path though a Haunted Mansion.
CHOOSE WHISLY!!!
!!!(IF_YOUR_NAME_IS_AMY_OR_JONATHAN_CHANGE_IT)!!!”””)
name = input(“please enter you name: “)
age = int(input(“please enter your age: “))
if age <= 13:
print(“you are too young to play this story game”)
else:
friend = room1(name)
if friend != 1:
end = room2(friend,name)
if end == 2:
print(“”)
elif end != 1 and friend.lower() == “amy”:
print(“”)
print(“You keep on running until possesed jonathan tells you that this was all a prank.\nBoth of them start cracking up at the prank and you three go home.\n(GOOD_ENDING:::THANKS_FOR_PLAYING)”)
else:
print(“”)
print(“””Jonathan jumps out the window and lands to hard.
You see possesed Amy chase you, so you jump too.
Luckly jonathans body softens the landing and you run away scared and lost FOREVER.
THE END!!!(BAD_ENDING)”””)
else:
print(“”)
def room1(name):
print(“”)
print(“””you and your friends are exploring this haunted mansion on halloween night.”””)
user_input = input(“who should enter the mansion first(” + name + “, Amy, Jonathan)”)
if user_input.lower() == name.lower():
print(“”)
print(“””You enter and a ghost suddenly possesses you.
you start to feel dizzy while the ghost takes control over you body and you black out.
(GAME_OVER)”””)
return 1
elif user_input.lower() == “amy”:
print(“”)
print(“””Amy enters first, and suddenly a ghost possesses
Amy and the door shuts behind you!”””)
friend = “Jonathan”
return friend
elif user_input.lower() == “jonathan”:
print(“”)
print(“””Jonathan enters first, and suddenly a ghost possesses
Jonathan and the door shuts behind you!”””)
friend = “Amy”
return friend
else:
print(“””That is not a valid option,
please check you spelling”””)
return 1
def room2(frined, name):
print(“”)
print(“You and ” + str(frined) + ” run passed the ghost friend and runs up stairs and you find a broken window”)
user_input = input(“who jumps first(” + str(name) + “, ” + str(frined) + “)”)
if user_input.lower() == name.lower():
print(“”)
print(“You jump out the window and landed to hard.\n (GAME_OVER)”)
return 2
elif user_input.lower() == frined.lower():
return 3
else:
print(“””\nThat is not a valid option,
please check you spelling”””)
return 2
main()
2. Remembrance Day Poppy (vector demonstration)
3. NHL Predictions
4. Month of failure and passion project
5. AI Tech Article

Artificial Intelligence (AI) is the development of computer systems that mimic human intelligence to perform tasks like learning, reasoning, and decision-making. In education, AI can personalize learning by adapting content to individual student needs, providing real-time feedback, and enabling interactive platforms like virtual tutors, thus enhancing engagement and accessibility. For task automation, AI streamlines repetitive processes, such as grading, administrative workflows, and data analysis, freeing educators and professionals to focus on creative and strategic work. By transforming education through tailored experiences and automating mundane tasks, AI boosts efficiency and fosters innovation, though careful implementation is needed to ensure equitable access and address potential job displacement.
My opinion on AI
The use of AI in education can disrupt education boards and teachers by automating critical functions such as grading and lesson planning. This could lead to job loss, significant financial burdens owing to implementation, maintenance, and training costs, a risk of depersonalized learning environments with weakened human connections essential for student development, ethical concerns over algorithmic biases, and privacy issues concerning the management of sensitive student data.
7. Nintendo Switch 2 Article

The Nintendo Switch 2 is a new hybrid gaming console that launched on June 5, 2025. It succeeds the original Switch and features a bigger screen, 4k graphics, further enhanced features like better battery performance, an improved user interface, and most Switch games still being compatible. Sales were remarkable, as it sold more than 3 million units within the first 24 hours, beating the PS4’s record by threefold. In Japan, there were 2.2 million people who entered a sales lottery. The console is priced at $629.99, which is significantly more than its predecessor. The Switch 2 is one of the most successful console launches in history.
My opinion on the Switch 2
I think that the Switch 2 deserves the amount of popularity it has when it launches. Compared to the other consoles, Nintendo does a great job in making the Switch easy to use and family-friendly. I have lots of friends who own a Switch, and their parents even play something. It also has a very genius design because the Joy-Con can be detached and can be used as a handheld console, steering wheel, fists, and guns. In summary, I think the release for the Switch Two deserves its popularity.
8. Cyberbullying Article

Cyberbullying is the purposeful harassment of an individual through social media, messaging applications, or forums by posting rumors, harmful comments, or humiliating content. It mostly affects teenagers. It is much worse than traditional bullying because it is anonymous. In the digital age, cyberbullying can lead to severe emotional consequences, including anxiety, depression, or social isolation. The problem can be prevented by educating users, moderating platforms, and teaching empathy.
My opinion on cyberbullying
Cyberbullying can affect a person’s emotions and mental health. It can cause anxiety and depression when not dealt with. Cyberbullying is an issue that has grown in attention because we are in an age where the internet is a big thing. The difference between traditional bullying and cyberbullying is that the bully stays anonymous. To prevent cyberbullies from attacking you, you could consider these tips: make personal accounts private, talk to a trusted adult, limit screen time, and know how to ignore people.
9. OBS recording
youtube said my video as too long so i entered a mp4





