Mathematical Expressions and Strings Lesson Notes
Based on the notebooks template by Orlando, Jaden, Max and Dylan.
Sequencing Practice: the code below does not follow the intended steps below. change the code so that it does so.
- Divide value1 by 10 (value1 = 5)
- Multiply 2 from the result of the step 1
- Subtract 4 from the result of the step 2
- Print the result of step 3
value1 = 5
value2 = value1 / 10 #step 1
value3 = value2 * 2 #step 2
value4 = value3 - 4 #step 3
print(value4)
Selection/Iteration Practice: Create a function to print ONLY the numbers of numlist that are divisble by 3.
Hint: use the MOD operator (a % b) to find the remainder when a is divided by b.
numlist = ["3","4","9","76","891"]
for number in numlist:
if (int(number) % 3) == 0:
print(number + " is divisible by 3")
continue
else:
continue
What is psuedocode?
Pseudocode is writing out a program in plain language with keywords that are used to refer to common coding concepts.
Can you think of some benefits of using pseudocode prior to writing out the actual code?
- Choose an everyday activity
- Imagine that you are providing instructions for this activity to a person who has never done it before
- Challenge someone to do the steps you wrote out
Ex. Brushing Teeth
- Pick up your toothbrush
- Rinse toothbrush
- Pick up toothpaste
- Place toothpaste on the toothbrush
- Rinse toothbrush again
- Brush teeth in a circular motion
- Spit
- Wash mouth
- Rinse toothbrush
- You have brushed your teeth!
#the substring will have the characters including the index "start" to the character BEFORE the index "end"
#len(string) will print the length of string
string = "hellobye"
print(string[0:5])
print(string[5:8])
print(len(string))
Concatenation Practice: combine string1 and string2 to make string3, then print string3.
string1 = "computer"
string2 = "science"
string3 = string1 + string2
print(string3)
import random
def convert(input):
if 0 <= input <= 255:
pass
else:
print("Invalid input.")
return
i = 7
binary = ""
while i >= 0:
if input % (2**i) == input:
binary += "0"
i -= 1
else:
binary += "1"
input -= 2**i
i -= 1
print(binary)
convert(-3)
convert(284)
convert(random.randrange(256))
names = ["jaden","max","dylan","orlando"]
def length(list):
for name in names:
print(name.capitalize() + " is", str(len(name)), "letters long.")
length(names)
<table id="nametable">
<!--SCRIPT DATA GOES HERE-->
</table>
<script>
table = document.getElementById("nametable");
newhtml = "";
defaulthtml = "<tr><th>Name</th><th>Length</th></tr>";
var namelist = ["Jaden", "Max", "Dylan", "Orlando"];
arrayLength = namelist.length;
for (var i = 0; i < arrayLength; i++) {
console.log(namelist[i], namelist[i].length);
newhtml = newhtml + "<tr><td>" + namelist[i] + "</td><td>" + String(namelist[i].length) + "</td></tr>";
table.innerHTML = defaulthtml + newhtml
};
</script>