Skip to the content.

3.2 Hacks

Tri 1 Team Teach Hacks

Popcorn Hacks

gaming_list = ['Among Us','Minecraft','Red Dead Redemption 2','Fortnite','Brawl Stars' ]
print(gaming_list)
['Among Us', 'Minecraft', 'Red Dead Redemption 2', 'Fortnite', 'Brawl Stars']
CSPsprints = {
    'Sprint 1': ['Github Pages Playground','Java Script Project Playground','Frontend Development','Tools Setup','SASS Basics','Running make'],
    'Sprint 2': ['Big Idea 3(3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.10)']
}
print('Things we did in Sprint 1:', CSPsprints['Sprint 1'])
print('Things we did in Sprint 2(Student Led Lessons):', CSPsprints['Sprint 2'])
Things we did in Sprint 1: ['Github Pages Playground', 'Java Script Project Playground', 'Frontend Development', 'Tools Setup', 'SASS Basics', 'Running make']
Things we did in Sprint 2(Student Led Lessons): ['Big Idea 3(3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.10)']

Homework Hack

BC_and_World_Units = [
    {
        'Bridge to BC Units': ['Unit 1','Unit 2','Unit 3','Unit 4','Unit 5'],
        'Unit 1': ['Functions','Limits','Continuity'],
        'Unit 2': 'The Derivative',
        'Unit 3': 'Applying the Derivative',
        'Unit 4': 'Integration',
        'Unit 5': 'Applying the Definite Integral',
    },
    {
        'AP World Units': ['1200-1450','1450-1750','1750-1900','1900-present'],
        '1200-1450': ['Unit 1:','Unit 2:'],
        '1450-1750': ['Unit 3','Unit 4'],
        '1750-1900': ['Unit 5','Unit 6'],
        '1900-present': ['Unit 7','Unit 8','Unit 9'],
    }
]
English_Seminar_Units = ('Community: Marrow Thieves','Power and Language: Animal Farm','Performance Task 1')
Physics_Units = {
    'Unit 1': 'Physics and Measurements',
    'Unit 2': 'Motion in One Dimension',
    'Unit 3': 'Vectors and Motion in 2D',
    'Unit 4': "Forces with Newton's 3 Laws",
}
print("I'm learning ", BC_and_World_Units, " in AP World and Bridge to BC")
print("I'm learning ", Physics_Units, " in AP Physics")
print("The units in English Seminar are ", English_Seminar_Units)
learning = True
bored = False
print(learning and bored)
print(learning or bored)
user_input = input('What are you learning in English Seminar?')
if user_input == 'Community, Power, Language':
    print('You are learning in English Seminar!')
else:
    print('Pay attention in class!')
num1 = 60
num2 = 59.8
addition = input('What is 60+59.8?')
if num1 + num2 == float(addition):
    print('Good Job!')
else:
    print('Try Again!')
I'm learning  [{'Bridge to BC Units': ['Unit 1', 'Unit 2', 'Unit 3', 'Unit 4', 'Unit 5'], 'Unit 1': ['Functions', 'Limits', 'Continuity'], 'Unit 2': 'The Derivative', 'Unit 3': 'Applying the Derivative', 'Unit 4': 'Integration', 'Unit 5': 'Applying the Definite Integral'}, {'AP World Units': ['1200-1450', '1450-1750', '1750-1900', '1900-present'], '1200-1450': ['Unit 1:', 'Unit 2:'], '1450-1750': ['Unit 3', 'Unit 4'], '1750-1900': ['Unit 5', 'Unit 6'], '1900-present': ['Unit 7', 'Unit 8', 'Unit 9']}]  in AP World and Bridge to BC
I'm learning  {'Unit 1': 'Physics and Measurements', 'Unit 2': 'Motion in One Dimension', 'Unit 3': 'Vectors and Motion in 2D', 'Unit 4': "Forces with Newton's 3 Laws"}  in AP Physics
The units in English Seminar are  ('Community: Marrow Thieves', 'Power and Language: Animal Farm', 'Performance Task 1')
False
True
You are learning in English Seminar!
Good Job!