Python Continued

Learning Missions

Mission 1 Predict Study the code below: import time for x in range(10): print(10-x) time.sleep(1) print(“Blast Off!”) [1] Did your answer include the following points? Are you sure you want to submit your answer? You won’t be able to make changes afterward. Confirm Cancel Run Now type the code into the IDE below and run […]

Learning Missions Read More »

Learning Missions

Mission 1 Predict Study the code below: x = 0 while x != 10: x = int(input(“Enter a number: “)) print(“You found the stopping value!”) [1] Did your answer include the following points? Are you sure you want to submit your answer? You won’t be able to make changes afterward. Confirm Cancel Run Now type

Learning Missions Read More »

Learning Missions

Mission 1 Predict Study the code below: answer = input(“How are you today? Good/OK/Bad”) if answer == “Good”: print(“Great to hear it!”) elif answer == “OK”: print(“Average day this, is it?”) elif answer == “Bad”: print(“Sorry you’re unhappy”) else: print(“You didn’t answer correctly”) [1] Did your answer include the following points? Are you sure you

Learning Missions Read More »

Learning Missions

Mission 1 Predict Study the code below: number1 = input(“Enter a number”) print(number1*5) [1] Did your answer include the following points? Are you sure you want to submit your answer? You won’t be able to make changes afterward. Confirm Cancel Run Now type the code into the IDE below and run the program to see

Learning Missions Read More »

Concept Exploration

What you will learn: Reminder of what Python is Reminder on how to program outputs in python Reminder on how to program inputs in python Reminder on how to store inputs in python using variables Understand the need to change data types when working with numbers in python Start Here: Video Overview class= “csuk-awesome-video” Continue

Concept Exploration Read More »

Concept Exploration

What you will learn: Reminder on how programs make decisions Reminder on how to program IF statements Understand how to program multiple IF Statements Start Here: Video Overview class= “csuk-awesome-video” Continue Here: Detailed Exploration Introduction Selection is a programming construct, which allows programs to take different pathways (execute different lines of code) depending on conditions,

Concept Exploration Read More »

Concept Exploration

What you will learn: Understand what a loop is in a program and where we may use one each time we go on the computer. Understand how to program a while loop in python Start Here: Video Overview class= “csuk-awesome-video” Continue Here: Detailed Exploration Introduction Iterations are a programming construct which enables the repeated execution

Concept Exploration Read More »

Concept Exploration

What you will learn: Understand what a loop is in a program and where we may use one each time we go on the computer Understand how to program a for loop in python Start Here: Video Overview class= “csuk-awesome-video” Continue Here: Detailed Exploration Introduction Iterations are a programming construct which enables the repeated execution

Concept Exploration Read More »

Scroll to Top