- This event has passed.
6 PM – Intro To Python – Darin
November 12 @ 6:00 pm - 7:00 pm
Your Final Exam is Next Week on November 19 lasting 2 hours.
What We Did Today:
- Finished the robux system program.
- Reviewed for the final exam next week.
Homework:
Study for the final exam next week!
Do the optional homework for the exploration game for extra practice!
# Make a text based program that lets you explore islands!
# You will have like 4 possible islands to explore - use a list
# example output:
“””
Welcome to AYCLOGIC Exploration Game!
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: abcd
Invalid output. Please try again.
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 2
You haven’t explored any islands!
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 1
You explored Tahiti!
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 2
You have explored:
Tahiti
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 1
You explored Bali!
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 2
You have explored:
Tahiti
Bali
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 1
You explored Hawaii!
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 2
You have explored:
Tahiti
Bali
Hawaii
What do you want to do?
1. Explore islands
2. View explored islands
3. Exit
Enter your selection: 3
Thank you for using the AYCLOGIC Exploration Game.
Notes:
Email me at ddjapri@ayclogic.com if you have any questions!